Jump to content

Creating an array from a database


gevensen

Recommended Posts

I have a array for example:

$item = array(
"Great <em>Bittern</em>"=>"Botaurus stellaris",
"Little <em>Grebe</em>"=>"Tachybaptus ruficollis",
"Black-necked Grebe"=>"Podiceps nigricollis");

 

which will output

 Array ( [Great Bittern] => Botaurus stellaris [Little Grebe] => Tachybaptus ruficollis [black-necked Grebe] => Podiceps nigricollis ) 

 

how can I input data from a database so it comes out as the array assuming I have $row[3] and $row[0] as the data?

 

for example

 

while($row=mysql_fetch_array($result)){
//$item.=array($row[3],$row[0]); 
//array_push($item,array($row[3]=>$row[0]));
//$item.=array($row[3]=>$row[0]);
$item.="[".$row[3]."]=>".$row[0];
}

 

which of course doesnt work??

 

Link to comment
https://forums.phpfreaks.com/topic/228831-creating-an-array-from-a-database/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.