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

Restituisce il modulo PHP Avviso:conversione da array a stringa

echo accetta la stringa come parametro ma mysql_fetch_array restituisce array - il messaggio che hai ricevuto significa che l'array è convertito in stringa per essere stampato da echo . Prova a utilizzare var_dump per stampare l'array:

var_dump($row);

Per stampare tutte le righe restituite dalla query usa qualcosa del genere:

while($row = mysql_fetch_array($myData)) {
    echo $row["room_name"]; // for example
}