Function for putting all database table to an array

Posted by jasmine on Stack Overflow See other posts from Stack Overflow or by jasmine
Published on 2010-03-18T23:50:56Z Indexed on 2010/03/19 0:21 UTC
Read the original article Hit count: 216

Filed under:
|

I have written a function to print database table to an array like this

$db_array=  
 Array(
    ID=>1,
    PARENTID =>1,
    TITLE => LIPSUM,
    TEXT =>LIPSUM
    )

My function is:

function dbToArray($table)
                        {
                          $allArrays =array();
                          $query = mysql_query("SELECT * FROM $table");
                          $dbRow = mysql_fetch_array($query);
                            for ($i=0; $i<count($dbRow)  ; $i++)
                                {
                                   $allArrays[$i] =  $dbRow; 
                                }
                            $txt .='<pre>';
                            $txt .= print_r($allArrays);
                            $txt .= '</pre>';
                            return $txt;
                        }

Anything wrong in my function. Any help is appreciated about my problem. Thanks in advance

© Stack Overflow or respective owner

Related posts about php

Related posts about mysql