Buongiorno,
non riesco a capire perchè nell'estrarre i dati dalla tabella, mysql dice che la tabella non esiste quando invece l'ho creata.
Quale può essere l'errore?

Codice PHP:
 <?php           $Risultato=mysql_query("select * from Tblmenu order by Posizione");           if (!$Risultato)       {       die("La tabella selezionata non esiste" mysql_error());       }          while ($riga=mysql_fetch_array($Risultato))          {     echo "

[url='#']" 
$riga[Nome_menu] ."[/url]</p>";                  }   ?>
Grazie