Vi spego:
Ho un login che fuznioan su in database testuale
per evitare che un secondo login elimini quello vekkio ho fatto questo codice
Il problema è k anche quando user.dat esiste redirecta a db/reg1.php?u=$user&p=$pswCodice PHP:
<?php
$user = $_GET['user'];
$pass=$_GET['pass'];
$psw = md5($pass);
if (file_exists(db/$user.dat)) {
header("Location: userno.php");
} else {
header("Location: db/reg1.php?u=$user&p=$psw");
}
?>
Come posso fare???
Grazie inanticipo!