I need script for displaying the user's IP address on the webpage plz help If possible I would also like to know how to get the Ip address of the user when the fill a form and submit to me.
PHP actually sets the users IP address as a variable. All you need to do is tell PHP what to do with it. <?php echo($_SERVER['REMOTE_ADDR']); ?> The above would print the IP address of the user viewing the website.