I try to catch data from mysql to put them all in array. Suppose:
users table
-----------------------
id| name | code
----------------------
1| gorge | 2132
2| flix | ksd02
3| jasmen | skaod2
$sql = mysql_query("select id, name, code from users");
$userinfo = array()
while($row_user = mysql_fetch_array($sql)){
$userinfo = $row_user[name]
}
-------------------------
foreach($userinfo as $usinfo){
echo $usinfo."<br/>";
}
Here is the problem i can only insert user name but cant insert also code & id in userinfo array please help me to insert all data in same array.
[P.S] No object oriented please.
This will give you
$userinfo
as an array with the following structure:If you want to output the data:
I found this code and I save my day: