// Get the recordtext from the database
$id = $_GET['id'];
$nometabella = @mysql_query(
"SELECT nomecampo FROM nometabella WHERE id='$id'");
if (!$nometabella) {
exit('Unable to load the recordtext from the database.');
}
if mysql_num_row ($nometabella) {
exit('Could not locate the specified tabella ID.');
}
$nometabella = mysql_fetch_array('$nometabella');
$nomecampo = $nometabella['nomecampo'];
Ottengo come output Could not locate the specified aforisma ID.
Chiedo suggerimenti!
Grazie