fai così:
[php]
<?php
session_start();
$username = htmlentities(strip_tags($_POST["username"]));
$password = htmlentities(strip_tags($_POST ["password"]));
$conferma = htmlentities(strip_tags($_POST ["confermapassword"]));
$nome = htmlentities(strip_tags($_POST["nome"]));
$cognome = htmlentities(strip_tags($_POST["cognome"]));
$mail = htmlentities(strip_tags($_POST["mail"]));
$quesito = htmlentities(strip_tags($_POST["quesito"]));
$risposta = htmlentities(strip_tags($_POST["risposta"]));
$_SESSION['alert'] = '';
if($password==""){$_SESSION['alert']['password'] = 'La password è obbligatoria<br>';}
if(strlen($password) < 6 || strlen($password) > 10){$_SESSION['alert']['password'] = 'La password deve essere minimo 6 caratteri e al massimo 10<br>';}
if(!$conferma){$_SESSION['alert']['confermapassword'] = 'La conferma è obbligatoria<br>';}
if(!$username){$_SESSION['alert']['username'] = "L'user è obbligatorio<br>";}
if(!$nome){$_SESSION['alert']['nome'] = "Il nome è obbligatorio<br>";}
if(!$cognome){$_SESSION['alert']['cognome'] = "Il cognome è obbligatorio<br>";}
if(!$mail){$_SESSION['alert']['mail'] = "La mail è obbligatoria<br>";}
if(!$quesito){$_SESSION['alert']['quesito'] = "Domanda obbligatoria<br>";}
if(!$risposta){$_SESSION['alert']['risposta'] = "Risposta obbligatoria<br>";}
if($_SESSION['alert']){
header('Refresh: 0; URL=' .'formregistrazerror.php');
}
else
{
include("config.php");
mysql_connect($db_host,$db_user,$db_password,$db_name) or die ("non riesco a connettermi");
mysql_select_db("$db_name") or die ("Non riesco a selezionare il database");
$sql = "SELECT * FROM utenti WHERE username = '$username'";
$result = mysql_query ($sql) or die (mysql_error());
$n = mysql_num_rows($result);
if ($n != 0)
{
echo "nome utente già occupato<br>";
echo "<a href="java-script:history.back()">ritenta</a> con un altro UserName";
}
else
{
$ip = $REMOTE_ADDR;
$sql = "INSERT INTO utenti (id, username, password, confermapassword, nome, cognome, mail, quesito, risposta, data, ip) VALUES ('', '$username', MD5('$password'), MD5('$conferma'), '$nome', '$cognome', '$mail', '$quesito', '$risposta', '$data', '$ip')";
$query = mysql_query ($sql) or die (mysql_error());
echo "dati inseriti<br>";
[/php]