Warning: Constant ABSPATH already defined in /home/raypasto/www/www/wordpress/wp-config.php on line 26

Warning: Cannot modify header information - headers already sent by (output started at /home/raypasto/www/www/wordpress/wp-config.php:26) in /home/raypasto/www/www/wordpress/wp-includes/feed-rss2.php on line 8
contact form – Dr. Ray Pastore's Instructional Technology Blog https://raypastore.com/wordpress Thu, 17 Nov 2011 13:04:47 +0000 en-US hourly 1 https://wordpress.org/?v=5.7.15 166124113 PHP Contact Mail Form https://raypastore.com/wordpress/2011/11/php-contact-mail-form/ https://raypastore.com/wordpress/2011/11/php-contact-mail-form/#respond Thu, 17 Nov 2011 13:04:47 +0000 https://raypastore.com/wordpress/?p=554 I know I have another of these posted on my blog however that one assumes that php global settings is OFF and many servers have it set to ON. So here is one that should work regardless of your server settings. To see an example of this working, just click on the contact page of my website in the links above.

Code:

<html>

<body>

<?php

//if submit button pressed

if(isset($_POST[‘submit’])){

//sending to my email
$name = $_POST[‘name’];
$email = $_POST[’email’];
$comments = $_POST[‘comments’];
$subject = $_POST[‘subject’];
$sql = “‘$name’, ‘$email’, ‘$comments'”;
$em = “‘$subject'”;
mail(‘enterYourEmailAddressHere’, $em, $sql);

echo(“<p>You message has been sent!” . “</p>”);
}
?>

<form name=”form1″ id=”form1″ method=”post” action=”<?=$PHP_SELF?>”>
<p align=”left”><strong>Name:</strong>
<input type=”text” name=”name” />
</p>
<p align=”left”>&nbsp;</p>
<p align=”left”><strong>Email:</strong>
<input type=”text” name=”email” />
</p>
<p align=”left”>&nbsp;</p>
<p align=”left”><strong>Subject:</strong>
<input type=”text” name=”subject” />
</p>
<p align=”left”>&nbsp;</p>
<p align=”left”><strong>Message:</strong>
<textarea name=”comments” cols=”60″ rows=”3″></textarea>
</p>
<p align=”left”>
<input name=”submit” type=”submit” id=”submit” value=”submit” />
<input type=”reset” name=”Submit2″ value=”Reset” />
</p>
</form>

</body>

</html>

]]>
https://raypastore.com/wordpress/2011/11/php-contact-mail-form/feed/ 0 554