[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
$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
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
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
Without using a 3rd party mail service (maybe such as an API where you can send requests in order to send mail) or using PHP (or other server side languages) to send mail from the server directly, I don’t believe there is any other option. mailto seems to be your best bet. 4 solved Would … Read more
form 3 is incorrect, should be: mail(“[email protected]”, $subject, $_POST[“school”], “From: Testing” ); $_POST[“school”]. 1 solved PHP – Passing Variables in 3 forms – Step1, Step2 and Step3 [closed]