2011-04-06, 03:15 AM
In quite a lot of my plugins for SMF and Joomla I use fetch row as this is the most efficient to use within my functions and classes. It appears the closest with myBB is fetch_array which is slightly different to what I need.
Any suggestions?
Basically I would use it as
function whatever($params) {
do some stuff
run a query
return mysql_fetch_row($query);
}
Any suggestions?
Basically I would use it as
function whatever($params) {
do some stuff
run a query
return mysql_fetch_row($query);
}