[Solved] Contact Form IP Address

$body = “Name: $name \n\nEmail: $email \n\nComments: $comments”; replace with $body = “Name: $name \n\nEmail: $email \n\nComments: $comments \n\nIP: “.$_SERVER[‘REMOTE_ADDR’]; solved Contact Form IP Address

[Solved] I Want to create a Contact form with User profile name auto input (Dynamic Text)

Thanks Guys for all the Moral Support because without you guys i would’t have researched this much. Thanks again solved it with: <?php echo $_SESSION[‘name’]; ?> now can anybody tell me how can i include in my form text field. Please solved I Want to create a Contact form with User profile name auto input … Read more

[Solved] Why is my contact form taking me to contact.php rather than sending an email to me? [closed]

It sounds like your server is not processing PHP correctly. There’s nothing wrong with your HTML form, assuming contact.php is indeed the action page you want – you just need to get your server/computer to handle PHP properly. Check this answer for more info. solved Why is my contact form taking me to contact.php rather … Read more