Ciao a tutti.

Come faccio a fare una funzione con al suo interno una query per verificare l'unicita' di un certo dato all'interno di un db ?

Sto facendo 2 prove cosi', ma o mi rende sempre lo stesso risultato...

Questa e' la funzione (sucuramente sbagliata...):

Codice PHP:

function verifica_utente () {

     return include_once(
"db_vars.php");    
                                
     
$query "SELECT * FROM utenti_pubb WHERE nome_utente = '$nome_utente'";
     
$result mysql_query($query,$conn); 
     if(
$result && mysql_num_rows($result) > 0) {

          return 
false;
                                
     }
                                
return 
true;