Jump to content

My price does not seem to be updating


oracle765

Recommended Posts


<? 

include_once('includes/config.php'); 

 $increment = 1

 //get values of each member 

 $query="SELECT `name`, `price` FROM merchant"

 $result=mysql_query($query); 

 

 $num=mysql_num_rows($result); 

 while ($row = mysql_fetch_array($result)) 

 { 

    $value = (float)$row['price] + (float)$increment; 

    $query2 = "UPDATE merchant SET `price`='$value' WHERE `name`='Harvey Norman' and price ='141.00'"

    $result2 = mysql_query($query2); 

 } 

 // close connection 

 mysql_close(); 

 ?>

if you have 1000 records in that table then you run that update 1000 times. All you need is

$query2 = "UPDATE merchant SET price= price+$increment WHERE `name`='Harvey Norman' and price = 141.00 "; 
$result2 = mysql_query($query2);

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.