Hi guys,
Im completely new to php and I'm trying link a php script to this form I have:
I cant see anything wrong with this form and i have linked a php mailer script to it but I'm not receiving the email...
I'm testing it live by the way.
thank in advance...
Im completely new to php and I'm trying link a php script to this form I have:
PHP:
<form action="contactformprocess.php" method="post">
<fieldset>
<label for="name">Name:</label>
<input type="text" name="name" placeholder="Enter your full name" />
<label for="email">Email:</label>
<input type="email" name="email" placeholder="Enter your email address" />
<label for="message">Message:</label>
<textarea name="message" placeholder="What's on your mind?"></textarea>
<input type="submit" value="Send message" name="submit"/>
</fieldset>
</form>
I cant see anything wrong with this form and i have linked a php mailer script to it but I'm not receiving the email...
I'm testing it live by the way.
thank in advance...
Last edited by a moderator: