|
| |||||||||
| Tags: array, database, mysql |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| Fill an array using a mysql database
I'm trying to code a php page to generate a pdf. In this pdf I would like to have a table with products in: I have a request in the mysql database. Code: 1. $ commands_products = mysql_query ('SELECT * FROM WHERE lcg_shop_commands_products (id_command = 189)');
2. $ data = mysql_fetch_array ($ commands_products) and I would put it in another table Code: 1. $contentTable = array ($data ['name'], $data ['reference'], $data ['quantity'], $data ['price'], $data ['name'], $data ['reference'], $data ['quantity'], $data ['price'], etc. ...,); but the problem is that I do not know how it finished. Have you any idea? |
|
#2
| ||||
| ||||
| Re: Fill an array using a mysql database
You can do this: Code: $query = mysql_query($sql);
$contentTable = array();
while($contentTable[] = mysql_fetch_assoc($query)) ;
// View
foreach($contentTable as $row) {
foreach($row as $key => $value) {
echo "$key => $value<br />"
}
} |
|
#3
| ||||
| ||||
| Re: Fill an array using a mysql database
The code does not work, the display returns nothing, there was already one; on command echo. I check my mysql command works fine. |
|
#4
| ||||
| ||||
| Re: Fill an array using a mysql database
Put a print_r ($contentTable) after the while loop |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Fill an array using a mysql database" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| PHP - I want to retrieve records from specific field from a MySQL table and build array using PHP | bond007dev | Software Development | 3 | 19-07-2010 05:23 PM |
| How to fill an array with random number in c++? | Juaquine | Software Development | 5 | 03-03-2010 05:34 PM |
| How to store byte array to database with JDBC? | RogerFielden | Software Development | 3 | 23-09-2009 11:52 AM |
| How to Populate an Array for MYSQL | FlayoFish | Software Development | 3 | 14-04-2009 01:28 PM |
| Auto fill word document from database | kaotix | MS Office Support | 4 | 12-08-2008 07:38 AM |