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 Link to comment https://forums.phpfreaks.com/topic/59906-unexpected-t_dnumber/ 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(); } ?> Link to comment https://forums.phpfreaks.com/topic/59906-unexpected-t_dnumber/#findComment-297909 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.