/ Published in: PHP
Expand |
Embed | Plain Text
function query_into_array($query){ for($i=0;$i<$y;$i++){ for($j=0;$j<$k;$j++){ } } return $retval; }
Comments
Subscribe to comments
You need to login to post a comment.
apro2000 on 03/14/09
mysql php array into query values assign
1 person have marked this snippet as a favorite
function query_into_array($query){ for($i=0;$i<$y;$i++){ for($j=0;$j<$k;$j++){ } } return $retval; }
Subscribe to comments
You need to login to post a comment.
function queryintoarray($query) { $res = mysqlquery($query); $return = array(); while ($row = mysqlfetch_assoc($res) { $return[] = $row; } return $return; }