- Po zmiennej
$sql
, gdzie jest$result
? $result = mysql_query($sql) **or die(mysql_error)** // to give the output error from MySQL if there is any
- Przed
while
, użyjvar_dump($row)
lubprint_r($row)
. - Jeśli napotkasz puste strony lub brak raportowania błędów, użyj
error_reporting(E_ALL);
na początku twojego scenariusza.
Edycja:Przepraszamy, używasz MySQLi. Użyj $mysqli->error
.