Form Di Registrazione:
Codice HTML:
<html>
<head>
<title>FantaWillos - Registrazione</title>
</HEAD>
<BODY>
<table border="0" cellspacing="1" cellpadding="0" width="230" align="center" bgcolor="#cccccc"><tbody>
<tr><form action="Registrato.php" method="post"> <input name="phpMyAdmin" type="hidden" value="V0N0db6Fl62QWr6eBkly75xAGn3" /><td>
<table border="0" cellspacing="1" cellpadding="3" width="100%" bgcolor="#ffffff"><tbody>
<tr>
<td width="78">Nikname</td>
<td width="6">:</td>
<td width="294"><input id="id" name="id" type="text" /></td>
</tr>
<tr>
<td width="78">Username</td>
<td width="6">:</td>
<td width="294"><input id="username" name="username" type="text" /></td>
</tr>
<tr>
<td>Password</td>
<td>:</td>
<td><input id="password" name="password" type="password" /></td>
</tr>
<tr>
<td width="78">Nome Squadra</td>
<td width="6">:</td>
<td width="294"><input id="nomeSquadra" name="nomeSquadra" type="text" /></td>
</tr>
<tr>
<td width="78">Nome Partecipante</td>
<td width="6">:</td>
<td width="294"><input id="nomePartecipante" name="nomePartecipante" type="text" /></td>
</tr>
<tr>
<td>Telefono</td>
<td>:</td>
<td><input id="telefono" name="telefono" type="text" /></td>
</tr>
<tr>
<td>E-Mail</td>
<td>:</td>
<td><input id="email" name="email" type="text" /></td>
</tr>
<tr>
<td></td>
<td></td>
<td><input name="Submit" type="submit" value="Registrati" /></td>
</tr>
<strong>Registrazione</strong>
</tbody></table>
</td>
</tbody></table>
</td>
</form></tr>
</tbody></table>
</BODY>
</HTML>
Pagina Che inserisce i dati nel database:
Codice PHP:
<?php
$host="localhost"; // Hostname
$username="pcarenaph"; // Mysql username
$password=""; // Mysql password
$db_name="my_pcarenaph"; //Nome del Database
$tbl_name="utenti"; // Nome della Tabella
$db = mysql_connect($localhost,$username,$password);
mysql_select_db($db_name,$db);
$id = $_POST['id'];
$username = $_POST['username'];
$password = $_POST['password'];
$nomeSquadra = $_POST['nomeSquadra'];
$nomePartecipante = $_POST['nomePartecipante'];
$telefono = $_POST['telefono'];
$email = $_POST['email'];
mysql_query("INSERT INTO ".$tbl_name." (id,username,password,nomeSquadra,nomePartecipante,telefono,email) VALUES ('$id','$username','$password','$nomeSquadra','$nomePartecipante','$telefono','email')",$db) || die(mysql_error());
/* quindi i dati sono stati salvati nel database e l'utente è registrato */
mysql_close($db);
?>
Sapendo questo come controllare che con sia vuoto nessun campo e che non ci siano spazi
(trim)
PS: Pagina Tra la prima e la seconda, che manda a quest'ultima se i criteri sono stati rispettati e che mandi un messaggio di errore in caso di scorrettezza.