This is what I want to add...
[codebox]where Order_num=".$keys["Order_num"][/codebox]
To the following code....
[codebox]global $conn;
$str = "insert into order_sales (Shipto_name,Shipto_Lname,Shipto_address,Shipto_address2,Shipto_city,Shipto_stat
e,Shipto_zip)
values ('".db_addslashes($values["Billto_name"])."','".db_addslashes($values["Billto_Lname"])."','".db_addslashes($values["Billto_address"])."'
,'".db_addslashes($values["Billto_address2"])."','".db_addslashes($values["Billto_city"])."','".db_addslashes($values["Billto_state"])."'
,'".db_addslashes($values["Billto_zip"])."')";
db_exec($str,$conn);[/codebox]
attempting to do what I know is usual, is not working out, anyone?