Nuovo file registrazione
<?
require ('config.php');
if(isset($_POST['registrati']))
{
$username = (isset($_POST['username'])) ? trim($_POST['username']) : '';
$password = (isset($_POST['password'])) ? trim($_POST['password']) : '';
$azienda = (isset($_POST['azienda'])) ? trim($_POST['azienda']) : '';
if(strlen($username) < 3 || strlen($username) > 10)
die ('Dimensione nome utente errata');
elseif(strlen($password) < 3 || strlen($password) > 10)
die ('Dimensione password errata');
elseif(strlen($azienda) < 3 || strlen($azienda) > 10)
die ('Dimensione nome azienda non valido');
else
{
$pass = md5($password);
$query = "INSERT INTO utenti (username,password,azienda) VALUES('$username','$pass','$azienda')";
$result = mysql_query($query);
if($result)
echo "Inserimento riuscito";
else
echo "Inserimento non riuscito";
}
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Registrazione</title>
</head>
<body>
<h1>Registrazione</h1>
<form method="post" action="">
Nome utente:<input type="text" name="username"><br>
Password:<input type="pass" name="password"><br>
Azienda:<input type="text" name="azienda"><br>
<input type="submit" name="registrati">
</form>
</body>
</html>