Skipjackrick Posted January 26, 2010 Share Posted January 26, 2010 Do any of you see a problem with this? For some reason I continue to get an error unexpected '{' when i add the following code. <?php if( $anglerId != $_SESSION['anglerId'] OR !isset($_GET['currentpage']) { //Update profile views $prfviews = "UPDATE anglers SET profile_views = profile_views + 1 WHERE anglerId = $anglerId "; $prfview = mysql_query($prfviews) or exit(mysql_error()); } ?> Link to comment https://forums.phpfreaks.com/topic/189920-syntax-problem/ Share on other sites More sharing options...
Alex Posted January 26, 2010 Share Posted January 26, 2010 You're missing a closing ) on this line: if( $anglerId != $_SESSION['anglerId'] OR !isset($_GET['currentpage']) should be: if( $anglerId != $_SESSION['anglerId'] OR !isset($_GET['currentpage'])) Link to comment https://forums.phpfreaks.com/topic/189920-syntax-problem/#findComment-1002124 Share on other sites More sharing options...
Skipjackrick Posted January 26, 2010 Author Share Posted January 26, 2010 DOH! Why doesn't my text editor highlight the text differently!!!??????? Man that was bugging me. Link to comment https://forums.phpfreaks.com/topic/189920-syntax-problem/#findComment-1002131 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.