Ciao a tutti, sono uno studente di informatica e mi servirebbe il vostro aiuto. stò creando un guestbook ma ho problemi con la registrazione, forse voi riuscirete a capire dove sbaglio perché io non sò più che pesci prendere. questo è il codeice html
Codice PHP:
<html>
<head>
<title>registrati.htm</title>
</head>
<body>
<p><html>
<form action="registrazione.php" method="POST">
<h>inserisci username e password</h>
<input type="text" name="user">
<input type="password" name="password">
<input type="submit" value="registra">
</body>
</html>
questo invece è quello php
Codice PHP:
<?php
include conn.php
$nick=$_POST['user'];
$pass=$_POST['password'];
$sql="select user,pass from utente where utente.user='$nick'";
$rs=mysql_query($sql);
$n=mysql_num_rows($rs);
if($n==0)
{$sql="insert into utente (nick,pass) values ('$nick','$pass')";
mysql_query($sql) or die("quary fallita");
header('Refresh: 2;URL=index.html');
echo "registrazione compiuta";}
else
{echo "utente già presente";
header('Refresh: 5;URL=registrati.html');}
?>
è mi da il seguente errore
Parse error: syntax error, unexpected T_VARIABLE in /membri/diruxguest/DiruxGuestBook/registrazione.php on line 3
dove ho sbagliato?