Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Template Shares (http://www.bvlist.com/forumdisplay.php?f=26)
-   -   pls help with mysqli (http://www.bvlist.com/showthread.php?t=9636)

Ruffneck 12th November 2013 13:05

pls help with mysqli
 
hi !

am change mysql to mysqli but is not work !

example

$realforum = mysql_result ($query, 0, 'realforum');

to

$realforum = $db->free_result ($query, 0, 'realforum');

function free_result its a mysqli_free_result

joeroberts 15th November 2013 04:59

You are trying to free the memory?
Quote:

The mysqli_free_result() function frees the memory associated with the result.
so you would use it like so
PHP Code:

$db->free_result ($query); 

not

PHP Code:

$realforum $db->free_result ($query); 

http://www.w3schools.com/php/func_my...ree_result.asp


All times are GMT +2. The time now is 14:32.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.