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()); } ?> Quote Link to comment 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'])) Quote Link to comment 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. Quote Link to comment 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.