Hi all,
I have this simple query
$query = 'SELECT count(ID), col1, col2, col3 FROM table WHERE email = ?'; // I know I have used capitals for ID
$stmt = $link->prepare($query);
$stmt->bind_param('s',$email);
which works great in xampp but gives a FATAL ERROR when I run it on a server. Uncaught Error: Call to a member function bind_param() on boolean in /var/www/html/
all the column names, tables names etc. in the query are correct but the query seems to fail so prepare must be returning a false value. Hence the error.
Anyone has any idea what's going on?
Thanks