qusta è la pagina precedente
<?
$hostname_musso = "localhost";
$database_musso = "cleabble01";
$username_musso = "cleabble01";
$password_musso = "N8pbRaWe";
$musso = mysql_pconnect($hostname_musso, $username_musso, $password_musso) or die(mysql_error());
mysql_select_db($database_musso, $musso);
$query_Recordset1 = "SELECT * FROM oroscopo";
$Recordset1 = mysql_query($query_Recordset1, $musso) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
?>
<html>
<head>
<title>amministrazione oroscopo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#E6FFFF">
<table width="626" border="0" align="center" cellpadding="0" cellspacing="0">
<td width="86%" bgcolor="#6699CC"><div align="center"><font color="white" size="3" face="Verdana">gestione oroscopo
clicca sul segno per apportare modifiche
</font></div></td>
<td width="4%"></td>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#E6FFFF">
<? do { ?>
<tr>
<td width="70%" height="100%" valign="top">
<p align="left">
<font color="#003399" size="3" face="Arial, Helvetica, sans-serif"><? echo $row_Recordset1['segno']; ?>
</font> <font size="2" face="Arial, Helvetica, sans-serif"><a href="amministrazione_oroscopo2.php?id=<? echo $row_Recordset1['ID']; ?>">
<?
$row_Recordset1['oroscopo'] = str_replace("\x0d", '
', $row_Recordset1['oroscopo']);
echo $row_Recordset1['oroscopo']; ?>
</a> </font></p>
</td>
</tr>
<? } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</body>
</html>