Hello,
I have a Job application form and it broke :S it don't work anymore.
Could anyonemake me one either in ASP, HTML or PHP.
Thanking you!
- Snoop
Printable View
Hello,
I have a Job application form and it broke :S it don't work anymore.
Could anyonemake me one either in ASP, HTML or PHP.
Thanking you!
- Snoop
What did it do with the data?
if you do make him one i would also like to use it (If it emails to an address like [email protected])
nopes sorry
Snoop its me mad remember !!!!! yo wats yur msn addy its me madmachine i need your help!!!!!
mat64 (Forum Moderator) - Please don't ask for others personal information.
Well it need, HAbbo Name:, E-Mail, Job type, Reason, Experiance
I can fill in the Job type etc.
Does it get send to an email address?
yes... [email protected]
I'll do it later if I have some time
ok ill rep you if you can :)
cant you get one off cutandpastescripts.com and edit it? or
Hmmm.... i want to try a ASP one :P never had one of them before cos my server handles ASP :):)
Snoop i am actually good with Html :P i can make a jobs form i made them for my site they include; sending to email addresses ([email protected]) Redirect after send AND field Validation, Interested?
From what I ever learnt of ASP it is really difficult and to be honest I would suggest using a secure PHP form.
http://www.chrishardy.co.uk/asp/tuto...ail-cdosys.asp
Thats a tutorial for using a form with CDOSYS
but i have a Linux server Ill Use PHP then :) so can someone find one +rep if you do :)
I'm actually guessing that you know the HTML for the form so heres some basic PHP for it you will have to set the variables yourself.
Edit:PHP Code:<?php
// Subject
$subject ="$subject";
// Details
$message="$detail";
// Mail of sender
$mail_from="$customer_mail";
// From
$header="from: $name <$mail_from>";
// Enter your email address
$to ='[email protected]';
$send_contact=mail($to,$subject,$message,$header);
// Check, if message sent to your email
// display message "We've recived your information"
if($send_contact){
echo "We've recived your contact information";
}
else {
echo "ERROR";
}
?>
Theres the HTML as asked. All credit goes to P2L for this by the way.HTML Code:<form name="form1" method="post" action="send_contact.php">
<table width="100%" border="0" cellspacing="1" cellpadding="3">
<tr>
<td width="16%">Subject</td>
<td width="2%">:</td>
<td width="82%"><input name="subject" type="text" id="subject" size="50"></td>
</tr>
<tr>
<td>Detail</td>
<td>:</td>
<td><textarea name="detail" cols="50" rows="4" id="detail"></textarea></td>
</tr>
<tr>
<td>Name</td>
<td>:</td>
<td><input name="name" type="text" id="name" size="50"></td>
</tr>
<tr>
<td>Email</td>
<td>:</td>
<td><input name="customer_mail" type="text" id="customer_mail" size="50"></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><input type="submit" name="Submit" value="Submit"> <input type="reset" name="Submit2" value="Reset"></td>
</tr>
</table>
</form>
Can you create the HTML form please im feeling lazy today :s dunno whyQuote:
Originally Posted by Raremandan
snoop i can make a HTml form. started it but i need you to verify the email address do this as soon as you can please.
he put the email on the first pageQuote:
Originally Posted by chris2k6
i know but he needs to verify it, the sites rules Lol.Quote:
Originally Posted by iNicks
just put [[email protected]] for now, he can change it
Lol you cant. When put in the 'Send to Address' you put the email you want it to be sent to then it says it needs to be verified before it can be used. =]
ok Thanks to Raremandan for Code
THREAD CLOSED!!