si è int auto incrementato...ho trovato questa soluzione funzionante:
grazie milleCodice PHP:
<?php
function identita()
{
$log_id = $_COOKIE['id_utente'];
$dati = mysql_query("SELECT nome,cognome FROM `utenti` WHERE id =$log_id");
while($row=mysql_fetch_array($dati)) {
echo(" ".$row["nome"]." ".$row["cognome"]."");}
}
?>![]()