Jump to content

[SOLVED] Updating a field


BarneyJoe

Recommended Posts

I'm just trying to edit some code to update a field in an orders table with a transaction code that wasn't there before, using some code in the return.php page.

 

At the moment it updates the the order status field using the code :

 

mysql_select_db($database_connOriental, $connOriental);
  $Result1 = mysql_query($updateSQL, $connOriental) or die(mysql_error());
}

if ("" == "") {
  $updateSQL = sprintf("UPDATE Orders SET OrderStatus=%s, WHERE OrderID=%s",
                       GetSQLValueString("Accepted", "text"),
                       GetSQLValueString($_SESSION['OrderNumber'], "int"));
//die($updateSQL);
  mysql_select_db($database_connOriental, $connOriental);
  $Result1 = mysql_query($updateSQL, $connOriental) or die(mysql_error());
}

 

The transaction code appears on the page as :

 

$VendorTxCode = $values['VendorTxCode'];

 

and correctly displays using :

 

<? echo ($VendorTxCode); ?>

 

So I thought I needed to change the update code to :

 

mysql_select_db($database_connOriental, $connOriental);
  $Result1 = mysql_query($updateSQL, $connOriental) or die(mysql_error());
}

if ("" == "") {
  $updateSQL = sprintf("UPDATE Orders SET OrderStatus=%s WHERE OrderID=%s", VendorTxCode=%s
                       GetSQLValueString("Accepted", "text"),
	       GetSQLValueString($_POST['VendorTxCode'], "text"),
                       GetSQLValueString($_SESSION['OrderNumber'], "int"));
//die($updateSQL);
  mysql_select_db($database_connOriental, $connOriental);
  $Result1 = mysql_query($updateSQL, $connOriental) or die(mysql_error());
}

 

But no joy - am I barking up the right tree with this?

Link to comment
Share on other sites

Although I did have a typo in the second part - should have been :

 

mysql_select_db($database_connOriental, $connOriental);
  $Result1 = mysql_query($updateSQL, $connOriental) or die(mysql_error());
}

if ("" == "") {
  $updateSQL = sprintf("UPDATE Orders SET OrderStatus=%s, VendorTxCode=%s WHERE OrderID=%s"
                       GetSQLValueString("Accepted", "text"),
	       GetSQLValueString($_POST['VendorTxCode'], "text"),
                       GetSQLValueString($_SESSION['OrderNumber'], "int"));
//die($updateSQL);
  mysql_select_db($database_connOriental, $connOriental);
  $Result1 = mysql_query($updateSQL, $connOriental) or die(mysql_error());
}

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.