Codice PHP:
<link href="css.css" rel="stylesheet" type="text/css">
<?
session_start();
if ($_SESSION['login'] != "yes")
{
print"<html>
<head>
<META http-equiv=\"refresh\" content=\"5;URL=login.php\">
<div id=\"table_center\">
<table width=\"500\" height=\"100\">
<tr>
<th height=\"15\" colspan=\"2\" scope=\"row\" background=\"images/sfondo_rosso.jpg\" class=\"table\"><div align=\"justify\" class=\"Stile7 Stile9\">
<div align=\"center\" class=\"Stile15\"><strong> ¡ Errore !</strong></div>
</div></th>
</tr>
<tr>
<th width=\"64\" scope=\"row\" class=\"table\"><img src=\"images/cancel_big.png\" align=\"center\"></th>
<th width=\"920\" bgcolor=\"#ffffff\" scope=\"row\" class=\"table\"><div align=\"center\">
<p class=\"Stile7\">Per accedere a questa pagina devi avere uno username e una password!<br>
<BR>
Attendi il redirect oppure clicca <a href=\"login.php\">qui</a> per fare il login<br>
<br>Clicca <a href=\"add_user.php\">qui</a> per fare la registrazione</p>
</div></th>
</tr>
</table></div>
</head>
</html>";
exit;
}
else
{
/*******************************************************************/
/* pag prot */
/*******************************************************************/
// 1Connessione al database
require ('inc/config.php');
$db = mysql_connect($db_host, $db_user, $db_pass);
if ($db == FALSE)
die ("<img src=\"images/button_cancel.png\"> <span class=\"Stile7\">Errore nella connessione. Verificare i parametri del database nel file inc/config.php</span>");
mysql_select_db($db_name, $db)
or die ("<img src=\"images/button_cancel.png\"> <span class=\"Stile7\">Errore nella selezione del database. Verificare i parametri nel file inc/config.php</span>");
// 2Query riconoscimento utente
$query = "SELECT numero,Forza,Agy,Vita,Ene,data,username FROM Mercato WHERE id='$id' LIMIT 1"or die(mysql_error());
$result = mysql_query($query);
$row = mysql_fetch_array($result);
echo"<html>
<head>
<title>Nuova pagina 1</title>
</head>
<body link=\"#FFFFFF\" vlink=\"#FFFFFF\" alink=\"#FFFFFF\" text=\"#FFFFFF\">
<div align=\"center\">
<table border=\"0\" width=\"401\" height=\"276\">
<tr>
<td height=\"16\" width=\"401\" bgcolor=\"#C0C0C0\">Benvenuto username
</td>
</tr>
<tr>
<td height=\"14\" width=\"401\" bgcolor=\"#C0C0C0\"> Sei registrato dal $data[data]</td>
</tr>
<tr>
<td height=\"20\" width=\"401\" bgcolor=\"#C0C0C0\">Le tue stat Sono:</td>
</tr>
<tr>
<td height=\"17\" width=\"401\" bgcolor=\"#808080\">$Forza</td>
</tr>
<tr>
<td height=\"19\" width=\"401\" bgcolor=\"#808080\">$Agy</td>
</tr>
<tr>
<td height=\"23\" width=\"401\" bgcolor=\"#808080\">$Vita</td>
</tr>
<tr>
<td height=\"16\" width=\"401\" bgcolor=\"#808080\">$Ene</td>
</tr>
<tr>
<td height=\"104\" width=\"401\" bgcolor=\"#C0C0C0\"> </td>
</tr>
<tr>
<td height=\"12\" width=\"401\" bgcolor=\"#C0C0C0\">Sei l'utente registrato N°$row[numero] </td>
</tr>
</table>
</div>
<p> </p>
</body>
</html>";
exit;
}
?>
Il problema che c'è è che non mi stampa i dati ,cioe ad es mi stampa benvenuto .
Mi sapreste dire come maI?