Codice PHP:
<?
$link1=false;
if($_GET['link1']){
$p = fopen("numeroLinkG","r");
fseek($p,0,SEEK_END);
$e = ftell($p);
fseek($p,0,SEEK_SET);
$numeroG = fread($p,$e);
fclose($p);
if(!empty($_POST['pulsanteGLinkG'])){
$num=fopen("numeroLinkG", "w");
$numeroG=$numeroG+1;
fputs($num, $numeroG);
fclose($num);
$fp=fopen( "post/postG".$numero, "a");
$txtG = trim($_POST['testoG']);
$titoloG = trim($_POST['titoloG']);
$nomeG = '<B>'.$titoloG . '</B><BR>';
$testoG = $txtG;
fputs($fp, $nomeG);
fputs($fp, $testoG);
fclose($fp);
}
for($n=$numeroG; $n>0; $n=$n-1){
// script per leggere i post scritti fra i separatori grandi della index
include ("Link/postG".$n);
echo "<img src= \"separatore.gif\"><br>";
}
// Script per leggere i post fra i separatori piccoli della index
$p = fopen("numeroLink","r");
fseek($p,0,SEEK_END);
$e = ftell($p);
fseek($p,0,SEEK_SET);
$numero = fread($p,$e);
fclose($p);
if(!empty($_POST['pulsanteLink'])){
$num=fopen("numeroLink", "w");
$numero=$numero+1;
fputs($num, $numero);
fclose($num);
$fp=fopen( "Link/post".$numero, "a");
$txt = trim($_POST['testo']);
$titolo = trim($_POST['titolo']);
$testo = $txt.'<br><br>';
$nome = '<B>'.$titolo . '</B><BR>';
fputs($fp, $nome);
fputs($fp, $testo);
fclose($fp);
}
for($n=$numero; $n>0; $n=$n-1) {
include ("Link/post".$n);
echo "<img src=\"separatorino.jpg\"><br>";
}
}
else{
$p = fopen("numeroG","r");
fseek($p,0,SEEK_END);
$e = ftell($p);
fseek($p,0,SEEK_SET);
$numeroG = fread($p,$e);
fclose($p);
if(!empty($_POST['pulsanteG'])){
$num=fopen("numeroG", "w");
$numeroG=$numeroG+1;
fputs($num, $numeroG);
fclose($num);
$fp=fopen( "post/postG".$numero, "a");
$txtG = trim($_POST['testoG']);
$titoloG = trim($_POST['titoloG']);
$nomeG = '<B>'.$titoloG . '</B><BR>';
$testoG = $txtG;
fputs($fp, $nomeG);
fputs($fp, $testoG);
fclose($fp);
}
for($n=$numeroG; $n>0; $n=$n-1){
// script per leggere i post scritti fra i separatori grandi della index
include ("post/postG".$n);
echo "<img src= \"separatore.gif\"><br>";
}
// Script per leggere i post fra i separatori piccoli della index
$p = fopen("numero","r");
fseek($p,0,SEEK_END);
$e = ftell($p);
fseek($p,0,SEEK_SET);
$numero = fread($p,$e);
fclose($p);
if(!empty($_POST['pulsante'])){
$num=fopen("numero", "w");
$numero=$numero+1;
fputs($num, $numero);
fclose($num);
$fp=fopen( "post/post".$numero, "a");
$txt = trim($_POST['testo']);
$titolo = trim($_POST['titolo']);
$testo = $txt.'<br><br>';
$nome = '<B>'.$titolo . '</B><BR>';
fputs($fp, $nome);
fputs($fp, $testo);
fclose($fp);
}
for($n=$numero; $n>0; $n=$n-1) {
include ("post/post".$n);
echo "<img src=\"separatorino.jpg\"><br>";
}
}
?>