bobleny
08-24-2011, 02:31 AM
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/en/mysql-store-result.html
Also, how do I use this in php?
// 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);
Thanks!
This is where I found it: http://dev.mysql.com/doc/refman/5.6/en/mysql-store-result.html
Also, how do I use this in php?
// 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);
Thanks!