supermerc Posted July 14, 2007 Share Posted July 14, 2007 Hey Im trying to make it so only I can log into a page So I did <?php if($_SERVER['REMOTE_ADDR'] != 67.68.90.17) { header("Location: index.php"); exit(); } ?> but it gives me Parse error: syntax error, unexpected T_DNUMBER in /home/randomy/public_html/ed/addpotion.php on line 8 Quote Link to comment Share on other sites More sharing options...
pocobueno1388 Posted July 14, 2007 Share Posted July 14, 2007 Try surrounding the IP in quotes: <?php if($_SERVER['REMOTE_ADDR'] != '67.68.90.17') { header("Location: index.php"); exit(); } ?> 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.