cscrofani Posted May 28, 2006 Share Posted May 28, 2006 Hi Everyone,I am getting this error, and am not sure why - Parse error: parse error, unexpected T_VARIABLE in c:\inetpub\wwwroot\zipcode_response.php on line 52Here's the code that the error is referring to:[code]$zipCode = $_Post ['ZipCode']$updateRecord = new FX($serverIP,$webCompanionPort); //this is the line that the error message is referring to$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. Y'all have any ideas?Thanks,Chris Quote Link to comment https://forums.phpfreaks.com/topic/10620-solved-parse-error-unexpected-t_variable/ Share on other sites More sharing options...
cscrofani Posted May 28, 2006 Author Share Posted May 28, 2006 Ah! Nevermind, I got it... I was missing a ';'... heh. Quote Link to comment https://forums.phpfreaks.com/topic/10620-solved-parse-error-unexpected-t_variable/#findComment-39598 Share on other sites More sharing options...
.josh Posted May 28, 2006 Share Posted May 28, 2006 maybe it's the first line of that code that has a parse error in it. your missing the semicolon on the end. Quote Link to comment https://forums.phpfreaks.com/topic/10620-solved-parse-error-unexpected-t_variable/#findComment-39599 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.