cscrofani Posted May 28, 2006 Share Posted May 28, 2006 Hi Everyone,Now I'm getting this error, and am not sure why - Undefined variable: _Post in c:\inetpub\wwwroot\zipcode_response.php on line 51Here's the code that the error is referring to:[code]$zipCode = $_Post ['ZipCode']; //this is the line that the error message is referring to$updateRecord = new FX($serverIP,$webCompanionPort);$updateRecord -> SetDBData('FXCart.fp7','Orders_Temp');$updateRecord -> SetDBPassword('pass','user');$updateRecord -> AddDBParam('Order_No',$_SESSION['ordno']);$updateRecord -> AddDBParam('ZipCode',$zipCode);$updateRecordResult = $updateRecord -> FMEdit();[/code]I'm just trying to update an existing record with a zip code, by grabbing post data from the previous page. Any ideas?Thanks,Chris Quote Link to comment https://forums.phpfreaks.com/topic/10622-undefined-variable/ Share on other sites More sharing options...
AndyB Posted May 28, 2006 Share Posted May 28, 2006 [code]$zipCode = $_POST['ZipCode']; [/code]Try that instead Quote Link to comment https://forums.phpfreaks.com/topic/10622-undefined-variable/#findComment-39604 Share on other sites More sharing options...
cscrofani Posted May 28, 2006 Author Share Posted May 28, 2006 [!--quoteo(post=377725:date=May 27 2006, 04:34 PM:name=AndyB)--][div class=\'quotetop\']QUOTE(AndyB @ May 27 2006, 04:34 PM) [snapback]377725[/snapback][/div][div class=\'quotemain\'][!--quotec--][code]$zipCode = $_POST['ZipCode']; [/code]Try that instead[/quote]Haha, oops.Thanks man! Quote Link to comment https://forums.phpfreaks.com/topic/10622-undefined-variable/#findComment-39607 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.