|
|
![]() |
| 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 |
![]() |
|
Tags: array, database, mysql |
Thread Tools | Search this Thread |
|
![]() | ||||
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 04:23 PM |
How to fill an array with random number in c++? | Juaquine | Software Development | 5 | 03-03-2010 05:34 PM |
File byte array to save in database | New ID | Software Development | 5 | 21-01-2010 11:22 AM |
How to Populate an Array for MYSQL | FlayoFish | Software Development | 3 | 14-04-2009 12:28 PM |
Auto fill word document from database | kaotix | MS Office Support | 2 | 08-08-2008 06:09 PM |