I've never used mysql_store_result(), in fact, I've never even heard of it until just the other day.
This is where I found it: http://dev.mysql.com/doc/refman/5.6/...re-result.html
Also, how do I use this in php?
Thanks!
This is where I found it: http://dev.mysql.com/doc/refman/5.6/...re-result.html
Also, how do I use this in php?
Code:
// I've tried this: $storeResult = mysql_query("mysql_store_result(". $queryResult .")", $sqlConnect); // and this: $storeResult = mysql_query("mysql_store_result()", $sqlConnect); // In both cases the result is a 1 echo($storeResult);
Comment