I have read all the form tutorial's and i cant understand them. I copy the html to frontpage but they just come up as text in my website.
Can anyone help me how to create a simple form so people can apply for jobs on my website?

I have read all the form tutorial's and i cant understand them. I copy the html to frontpage but they just come up as text in my website.
Can anyone help me how to create a simple form so people can apply for jobs on my website?
1589 Halo 2 games played .. and counting
you got dreamweaver if not want me make you one?
That would be great , ive messaged u
1589 Halo 2 games played .. and counting
Use Thybag.co.uk Its got a form handler![]()
Personally i agree with that.Originally Posted by Postbag
Use Thybag.co.uk Its got a form handler
- Dan
Here's a form I am using on my website.
First, create these files.
confirm.php
&
contact.html
Place this code in the contact.html file.
<form action="confirm.php" method="post">
Habbo name: <br>
<input type="text" name="habboname"><br>
Your e-mail: <br>
<input type="text" name="youremail"><br>
Message:<BR>
<textarea name="message" width="10" hight="10"></textarea><br>
<input type="submit" value="Send">
</form>
Place this code in the confirm.php file.
<?php
$name=$_POST['habboname'];
$email=$_POST['youremail'];
$comments=$_POST['message'];
$to="[email protected]";
$message="Name: $name \n Email: $email \n Message: $message \n IP: $REMOTE_ADDR";
if(mail($to,"E-mail from your site",$message,"From: $email\n")) {
echo "";
} else {
echo "Error.";
}
?>
- Your visitors will be redirected to confirm.php when they've sent their message. IP's are logged -
Wow Jaxxy. Your a Brill Webmasteryour should work for habbox
![]()
Never argue with an idiot, he'll drag you down to his level, and beat you with experience.
And 15 mins later...Originally Posted by Recursion
*oh trust me
*I would NEVER go ATi
Sapphire ATI Radeon HD 5850 1024MB GDDR5 PCI-Express Graphics Card £195.73 1 £195.73
*ordered.
Nahh it's a simple PHP form code.Originally Posted by DJ-Snoop
Wow Jaxxy. Your a Brill Webmasteryour should work for habbox
- Dan
Want to hide these adverts? Register an account for free!