can anyone tell me what is wrong here, i am learning php and useing DW8 this is what DW is writing and it wont work keep getting this error,
Parse error: syntax error, unexpected T_STRING, expecting T_PAAMAYIM_NEKUDOTAYIM in C:\wamp\www\ResultPage.php on line 4
$varBusinessType_rsResultPage = "%";
LINE 4 -
if (isset(Request QueryString['sbBusinessType'])) {
$varBusinessType_rsResultPage = (get_magic_quotes_gpc()) ? Request QueryString['sbBusinessType'] : addslashes(Request QueryString['sbBusinessType']);
help please
Moderator: General Moderators
Re: help please
Code: Select all
get_magic_quotes_gpc() ? $varBusinessType_rsResultPage = Request QueryString['sbBusinessType'] : $varBusinessType_rsResultPage = addslashes(Request QueryString['sbBusinessType']);
Re: help please
No. I had to do it all again and now think it is a settings issue.