For some reason mysqli $query -> fetch();
returns blank, the columns that are longtext in my mysql table?
Any ideas? I set the columns to text
, it works fine. It also works fine on my WAMP server, but when I put it up to the production server it just returns blanks. Both systems are running php 5.3.5
Have you tried using
$mysqli->query()
and$result->fetch_object()
?Same problem?