Jump to content

[SOLVED] foreach, while, etc.. what to use and how


Recommended Posts

Alright for the life of me i can't figure this out...

 

I've got a table in my database, it's got 2 cells in it they are name and price

 

Now, what I am trying to do is select everything from the database, which is easy.

 

Though I need the output to be something like this.

 

array (

name1 = price1,

name2 = price2,

name3 = price3,

name4 = price4 )

 

with of course the names and prices being whats in the select.  I just have no clue how to do it.

I had figured this out prior to your posting..  it's REAL similar...

 

$prices = mysql_query("SELECT name, price FROM table");

$prices = $aws->sql_prices_array($prices);

 

function sql_prices_array($query1) {

while ($erray = mysql_fetch_array($query1, MYSQL_ASSOC)) {

$mda[$erray["name"]] = $erray["price"];

}

return $mda;

}

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.