oni-kun Posted December 2, 2009 Share Posted December 2, 2009 I have a very simple system to grab an IP outputted by a PHP file.. (for a project I have) but it outputs a 1 at the end!! <form method="post" action="<?php echo $_SERVER["PHP_SELF"]; ?>"> <font style="color:#333;">IP Address to Analyse:</font> <input type="text" value="<?php echo include('./disp_ip.php'); ?>" size="20" maxlength="20" name="IPaddr"><br /> <input style="color:#333;" type="submit" value="submit" name="submit"> Is the code, note NO 1. Disp_ip.php has this simple code: <?php echo $_SERVER['REMOTE_ADDR']; ?> Yet I get this insanely weird result? <input type="text" name="IPaddr" maxlength="20" size="20" value="64.180.2.2341"/> Where on earth is this 1 coming from? it appears EVERY time I echo disp_ip.php Quote Link to comment Share on other sites More sharing options...
JAY6390 Posted December 3, 2009 Share Posted December 3, 2009 Remove the echo keyword from the include Quote Link to comment Share on other sites More sharing options...
oni-kun Posted December 3, 2009 Author Share Posted December 3, 2009 Remove the echo keyword from the include I've been going forever trying to find and stress out about how to fix this, THANK YOU! Quote Link to comment Share on other sites More sharing options...
JAY6390 Posted December 3, 2009 Share Posted December 3, 2009 haha no problem my friend 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.