Ciao !
Ho creato questo script php :
Codice PHP:
<h1>NEWS</h1>
<p>
<?
$var1 = file("news.txt");//estraggo l'array dal file .txt
$var = array_reverse($var1);// li inverto
?>
</p>
<table width="100%" border="0"> <?
for ($i=0;$i<count($var);$i++) {
$lista =explode("|", $var[$i]);
?>
<tr>
<td width="80%"><?=$lista[0]; ?></td>
<td width="20%"> </td>
</tr>
<tr>
<td width="80%">POSTATO DA <em><?=$lista[1]; ?></em>
IL <em><?=$lista[2]; ?></em></td>
<td width="20%"> </td>
</tr>
<tr>
<td width="80%"><?=$lista[4]; ?></td>
<td width="20%" align="right" valign="bottom"><?=$lista[3]; ?></td>
</tr> <?
}//fine ciclo for
?>
</table>
<p>
</p>
Purtroppo però , in questo file txt ci sono le news ...
Codice:
TITOLO|Mac@|24 Ottobre 2006|Novità Sito|ciao <br> oggi apre il sito XX jkkhdfkjbasd dsjkfhbjksadbfhksadv dshgf hsdgfhgdsahfsgdhfhdsa hgfds hgfhjsdg fhsgdahgshfhsd gfhsgdhf hjsdga flakgsfj
TITOLO22222|Mac@|24 Ottobre 2006|Novità Sito|ciao <br> oggi apre il sito XX jkkhdfkjbasd dsjkfhbjksadbfhksadv dshgf hsdgfhgdsahfsgdhfhdsa hgfds hgfhjsdg fhsgdahgshfhsd gfhsgdhf hjsdga flakgsfj
Però mi scrive due volte (dove ci sono gli spazi) POSTATO DA IL
Ora , c'è qualcosa per controllare se c'è uno spazio vuoto e , in base a quello , passa all'array dopo ?
Grazie :)