Jump to content

store result in variable


pietbez

Recommended Posts

can someone please point out where i m going wrong.

 

this code is working fine, but i need the results in a variable

$result = mysql_query("SELECT * FROM `gifts` WHERE `id` =$id ");

while($row = mysql_fetch_array($result))

  {
  echo  $row['price'] , $row['units'];
  }

so, when i do this, i only get the first variable???

$result = mysql_query("SELECT * FROM `gifts` WHERE `id` =$id ");

while($row = mysql_fetch_array($result))

$price = $row['price'];
$units = $row['units'];

  {
  echo  $price , $units;
  }

please help.

Link to comment
https://forums.phpfreaks.com/topic/280297-store-result-in-variable/
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.