Ho fatto 1 estrapolazione del nike 1 frase con link ma mi da errore il codice è:
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
{
// Connessione 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>");
// Query riconoscimento utente
$query = "SELECT * FROM ".$tbl_prefix."user WHERE id = '$id'";
$result = mysql_query($query);
$row = mysql_fetch_array($result);
echo ("<span class=\"Stile7\"><strong>Benvenuto $row[username] </strong></span><br><br>");
echo ("<p><font size="4">Opzioni</font></p>
<p>Per Cancellare questo account clicca
<a href="http://ang.altervista.org/LegendTeam/Login/delete_user.php">Qui</a></p>
<p> </p>");
}
?>
mi dice :
Parse error: syntax error, unexpected T_LNUMBER in /membri/ang/LegendTeam/Login/protetta.php on line 70
Come posso risolvere? vi ringrazio anticipatamente!