Jump to content

Problem in updating table data


newphpcoder

Recommended Posts

Hi...

 

I have table with

PO_No

POReq

CompKg

PlugWt

Doz

KgDoz

TotalKg

BatchNeeded

 

Now,

 

I have problem in updating  field (Doz, KgDoz, TotalKg, BatchNeeded).

 

 

here is my code:

 

$sql = "SELECT CompKg, PlugWt, POReq FROM sales_order ";
   $res = mysql_query($sql, $con);
   
  while($row = mysql_fetch_assoc($res)){
   
   $CompKg = $row['CompKg'];
   $PlugWt = $row['PlugWt'];
   $POReq = $row['POReq'];
   
   $Doz = (($CompKg * 1000) / $PlugWt) / 12 / 2;
   $KgDoz = ($CompKg / $Doz);
   $TotalKg = ($POReq * $KgDoz);
   $BatchNeeded = ($POReq / $Doz);
  } 
   $sqlupdate = "UPDATE sales_order SET 
   Doz = '$Doz',
   KgDoz = '$KgDoz',
   TotalKg = '$TotalKg',
   BatchNeeded = '$BatchNeeded'";
   $res_update = mysql_query($sqlupdate, $con);

 

the result are wrong.

 

Thank you

 

 

Link to comment
Share on other sites

I revise my code:

 

   $sql_ud = "SELECT CompKg, PlugWt, SKUCode FROM sales_order ORDER BY SKUCode";
   $res_ud = mysql_query($sql_ud, $con);
   
  while($row_ud = mysql_fetch_assoc($res_ud)){
   $SKUCode = $row_ud['SKUCode'];
   $CompKg = $row_ud['CompKg'];
   $PlugWt = $row_ud['PlugWt'];
   
   $Doz = @(($CompKg * 1000) / $PlugWt) / 12 / 2;
   $KgDoz = @($CompKg / $Doz);
   
   $sqlupdate = "UPDATE sales_order SET 
   Doz = '$Doz',
   KgDoz = '$KgDoz'
   WHERE SKUCode = '$SKUCode'";
   
  // echo $sqlupdate;
   $res_update = mysql_query($sqlupdate, $con);
  }
  
  $sql = "SELECT POReq, Doz, KgDoz, SKUCode FROM sales_order ORDER BY SKUCode";
  $res_up1 = mysql_query($sql, $con);
  
  while($row_up1 = mysql_fetch_assoc($res_up1)){
  $SKUCode = $row_up1['SKUCode'];
  $POReq = $row_up1['POReq'];
  $Doz = $row_up1['Doz'];
  $KgDoz = $row_up1['KgDoz'];
      
  $TotalKg = @($POReq * $KgDoz);
  $BatchNeeded = @($POReq / $Doz);
  
  $sqlupdate1 = "UPDATE sales_order SET 
   TotalKg = '$TotalKg',
   BatchNeeded = '$BatchNeeded'
   WHERE SKUCode = '$SKUCode'";
   
   $res_update1 = mysql_query($sqlupdate1, $con);
      
  }

 

And now I have wrong output in my second update. for TotalKg and BatchNeeded.

 

Link to comment
Share on other sites

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.