Mysql
 sql >> Database >  >> RDS >> Mysql

query MySQL che restituisce l'ID risorsa n. 5

"ID risorsa n. 5:0" non è un errore. Significa che hai provato a echo $res invece di provare a usare $row variabile, come $row[column] per fetch_assoc, $row[0] per fetch_row, o entrambi per fetch_array.

Le altre risposte spiegano l'uso di mysql_fetch_*

Inoltre, mysql_* è deprecato. Dovresti invece usare le funzioni mysqli_* o PDO.