Ho creato questo sito per la mia classe :
http://diclassea.altervista.org/home.php
Se guardate Home e Download (le pagine) , la tabella verde chiaro inizia SUBITO dall'alto , mentre per tutte le altre pagine (vedo ad esempio Info) , la tabella non inizia subito dall'alto
Sapete darmi una risposta del perchè? Grazie ^_^
P.S.: nel caso serva posto l'html diu tutte e due le pagine :
Home(news) --->
Info --->Codice PHP:
<center>
[b]<font color="#339966" size="+2">NEWS</font>[/b]
<hr width="91%" color="#339966" >
<?
include "il file ....";// e un file di configurazione MySQL , non contiene dati da stampare a video ma solo variabili PHP
#Compilo la query SELECT che selezionerà tutti i campi contenuti nella tabella
$MySql = mysql_query ("SELECT * FROM news ORDER BY id DESC LIMIT 3") or die ( "Non riesco ad eseguire la richiesta");
#Se la query non riesce si visualizzerà un messaggio di errore
#I risultati della query li avrò nell'array $risultato, grazie alla funzione mysql_fetch_array e grazie al while
#ripeterò la query fino all'esaurimento di "risposte" nel database
while ( $rs = mysql_fetch_array($MySql)) {
?>
<table width="91%" border="0">
<tr>
<td width="80" height="27" valign="top"><div align="right">[b]Data:[/b]</div></td>
<td width="292" valign="top"><div align="left"><?= $rs['data'] ?></div>
</td>
</tr>
<tr>
<td width="80" height="27" valign="top"><div align="right">[b]Titolo:[/b]</div></td>
<td><div align="left"><?= $rs['titolo'] ?></div>
</td>
</tr>
<tr>
<td width="80" height="27" valign="top"> <div align="right">[b]News:[/b]</div></td>
<td><div align="left"><?= $rs['testo'] ?> </div>
</td>
</tr>
</table>
<hr width="91%" color="#339966" >
<?
} ;
?>
</center>
Codice PHP:
<center>
[b]<font color="#339966" size="+2">INFO</font>[/b]
<hr width="91%" color="#339966" >
<table width="91%" border="0">
<tr>
<td width="80" height="27" valign="top"><div align="right">Ovvero ...
Chi siamo ? </div></td>
<td width="292" valign="top"><div align="left">Siamo ... XXX .... Bla .... Bla .... Bla ........... </div>
</td>
</tr>
</table>
<hr width="91%" color="#339966" >
</center>