I was wondering, it might be beneficial if I were to know a few additional things when people use my contact form, like their IP address. So can I use this code to get that data and how do I put it in the form?
PHP Code:
$ipi = getenv("REMOTE_ADDR");
then place the hidden field inside the html form
HTML Code:
<input type="hidden" name="ip" value="<?php echo $ipi ?>" />
Thanks...
(then how do i put this in the email I recieve?
(The IP address used here was: ____.____.____.____)