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) --->
Codice PHP:
<center>
<strong><font color="#339966" size="+2">NEWS</font></strong><br>
<hr width="91%" color="#339966" >
<?
include "il file ....";
#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)) {
?>
<br>
<table width="91%" border="0">
<tr>
<td width="80" height="27" valign="top"><div align="right"><strong>Data:</strong></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"><strong>Titolo:</strong></div></td>
<td><div align="left"><?= $rs['titolo'] ?></div>
</td>
</tr>
<tr>
<td width="80" height="27" valign="top"> <div align="right"><strong>News:</strong></div></td>
<td><div align="left"><?= $rs['testo'] ?> </div>
</td>
</tr>
</table>
<hr width="91%" color="#339966" >
<br>
<?
} ;
?>
</center>
Info --->
Codice HTML:
<center>
<strong><font color="#339966" size="+2">INFO</font></strong><br>
<hr width="91%" color="#339966" >
<br>
<table width="91%" border="0">
<tr>
<td width="80" height="27" valign="top"><div align="right">Ovvero ...<br>
Chi siamo ? </div></td>
<td width="292" valign="top"><div align="left">Siamo ... XXX .... Bla .... Bla .... Bla ........... </div>
</td>
</tr>
</table>
<br>
<hr width="91%" color="#339966" >
<br>
</center>