I need a contact form coded in PHP, 50p in PayPal to whoever can do this.
Boxes:
Name:
Subject (drop down): Jobs, Articles, Feedback, Suggestions
Comments (Text Box):
I want it sent to my email, just put [email protected] in the email field.
Printable View
I need a contact form coded in PHP, 50p in PayPal to whoever can do this.
Boxes:
Name:
Subject (drop down): Jobs, Articles, Feedback, Suggestions
Comments (Text Box):
I want it sent to my email, just put [email protected] in the email field.
why not make your own? Plently of tuts on the forum.
I'd do it for £1, the problem is that once Paypal take their fee you'll be left with 20p ;P
Use the thybag form handler... its free
here:
<FORM method="post" action="/cgi-bin/mailme">
<INPUT type="text" name="You're Name" size="25" maxlength="60">
<SELECT name="Subject">
<OPTION SELECTED> Jobs
<OPTION>Articel's
<OPTION>Feedback
<OPTION>Suggestions
</SELECT>
<INPUT type="Send now"> <BR>
<INPUT type="Reset">
</FORM>
Ok you're done this was my first ever form
o ye and
You will replace the "/cgi-bin/mailme" above with the address your server gives you to use their cgi program. If you are using your own program, upload the program to your server and use the address of your program
No need for the £0.50p
Rep would be nice tho ;)
Arnt you nice :). Rep from meh :)
Ewww, evil CGI.
ye what is CGI thasnk cal :)
this may be old but ive kinda edited beil's form to make fit your needs
made it to your email and made it so if 1 or more feilds are left empty
it wont send you anything
and ive layed it out kinda how you may want it
HTML Code:<FORM method="post" action="mailto:[email protected]?subject=test form">
Name :<INPUT type="text" name="You're Name" size="10" maxlength="60"> <br>
Email adress: <INPUT type="form"> <br>
<Br>
Subject: <SELECT name="component-select"> <br>
<OPTION selected value="Component_1_a">none</OPTION>
<OPTION>Articals
<OPTION>Feedback
<OPTION>Suggestions
</SELECT>
<BR>
<BR>
<Input type="submit" value="send" onclick=" verifiy( ) ">
<Input type="Reset" value="reset" onclick=" verifiy( ) ">
</FORM>
The mailto function has been dropped by all modern browsers. As to say, all you will send is a blank email..