lo script mi da questo errore
Codice PHP:
Parse error: syntax error, unexpected T_VARIABLE in /membri/driver22/Registrazione/reg.php on line 12
script con errore
Codice PHP:
<?php
//inizio
include 'config.php';
$username = $_POST['username'];
$password = $_POST['password'];
$cpassword = $_POST['cpassword'];
$email = $_POST['email'];
$cars = $_POST['cars'];
$firma = $_POST['firma'];
$avatar = $_POST['avatar']
$db_query = "SELECT * FROM utenti WHERE username = '$username' ";
$res = mysql_query($db_query, $conn) or die(mysql_error());
$num_rows = mysql_num_rows($res);
if($username==NULL|$password==NULL|$email==NULL|$cars==NULL|$firma==NULL|$avatar==NULL) {
echo "Tutti i campi sono obbligatori, <a href='index.php?pg=2'>Torna Indietro</a>";
exit();
}
if($num_rows!=0) {
echo "Username già presente nel database, <a href='index.php?pg=2'>Torna Indietro</a>";
exit();
}
if($password!=$cpassword) {
echo "Le password non coincidono, <a href='index.php?ph=2'>Torna Indietro</a>";
exit();
}
if(strlen($cars) <= 3 || strlen($cars) >= 30){
$final_report.="Il nome della macchina deve conprendere dai 3 i 30 caratteri..<a href='index.php?pg=2'>Torna Indietro</a> ";
}
if(strlen($avatar) <= 3 || strlen($avatar) >= 100){
$final_report.="Url Avatar Troppo Lungo, <a href='index.php?pg=2'>Torna Indietro</a> ";
}
if(strlen($firma) <= 3 || strlen($firma) >= 250){
$final_report.="Firma troppo lungha, <a href='index.php?pg=2'>Torna Indietro</a> ";
}
$query = "INSERT INTO utenti (username, password, email, cars, firma, avatar) VALUES ('$username','$password','$email','$cars','$firma','$avatar')";
mysql_query($query) or die(mysql_error());
echo"Registrazione effettuata. Esegui il login da <a href='index.php?pg=3'>QUI</a>.";
//fine
?>
linea 12
Codice PHP:
$db_query = "SELECT * FROM utenti WHERE username = '$username' ";