00:00
00:00
Newgrounds Background Image Theme

aniMATING just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Email Form / Contact page

3,310 Views | 5 Replies
New Topic Respond to this Topic

Email Form / Contact page 2006-03-16 14:01:26


This is a Tutorial about making a Contact Page on your site using PHP
Ok so you hate spambots? So do I ! Making a contact page that doesent show your Email is a perfect solution!

Requirements :
- PHP 4.XX.XX
- Basic knowledge of HTML and PHP

So lets start. First if we dont have MySQL We make a file that will have our email!

include_email_info.php
<?php
$email = "myemail@myhost.com";
?>

Now we have our email written in a file.. So lets make the contact PHP page!
We will name it contact.php < duhh...

So: contact.php
<?php
//We include include_email_info.php so that we may acceas the email!
include_once("include_email_info.php");
// We check if variables are set!
if(isset($_POST['user_email'],$_POST['name
'],$_POST['meassege'])){

// If they are set. Set the text and filter the input thus send the email! If not, show the page...

$meassege = strip_tags($_POST['meassege']."\n\n".$_POS
T['name']);
mail($email,"Contact",$meassege);
echo "Email Sent!";
}
else
{
// So this is the boring part.. So im not going to write it.. Just echo your html code:
echo "<html>";
echo "<body>";
etc....
dont forget to name the <textarea type='text' name='meassege'> the inputs like the variables...
}
?>
Well hope it helped anyone!

Response to Email Form / Contact page 2006-03-16 14:09:02


Ok tell me if sometin doesent work.. i will help you! :)

Response to Email Form / Contact page 2006-03-25 08:47:48


Basic.

I am not saying it is bad!!

Response to Email Form / Contact page 2006-08-08 08:27:33


ok, seems to be fairly simple to understand, jsut how do i actually use this code?

Do i use as a seprate file of code or somthing?

Response to Email Form / Contact page 2006-11-19 05:52:20


At 3/16/06 02:03 PM, CitricSquid wrote: Hmm, i am just testing it out now, so ill post back if it works

does this mean its not working?
gonna use this now.
just what I was looking for. thanx