Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Php data submission form?

Status
Not open for further replies.

tekquest

Vendor
Feb 1, 2003
224
AU
Hi all,

I am attempting to create a php submission form that can be filled out and mailed to an email address.

I have done extensive searching, but I cannot seem to find anything really relivant, can anyone suggest a script that I can possibly plug in?

Thanks for reading,

Luke
 
hi Nathan,

Thanks for your reply, I don't have send mail,

Its my fault for not mentioning this is for an intranet pc, running red hat 9 and apache and php 3.

Thanks,

Luke
 
basic example:

form.php
Code:
<?
  if (($send_data) && ($name) && ($age) && ($location)) { // if u want some non-required fields, just take it's name off the if statment

   $destination = &quot;you@domain.com&quot;;
   $subject = &quot;Form Results&quot;;
   $message = &quot;Name: $name \n Age: $age \n Location: $location&quot;;
   mail($destination,$subject,$message);

  }

?>


<form method=post action=form.php>
<input type=text name=&quot;name&quot;><br>
<input type=text name=&quot;age&quot;><br>
<input type=text name=&quot;location&quot;><br>
<input type=submit name=&quot;send_data&quot; value=&quot;Submit&quot;>
</form>

jamesp0tter,
jamespotter@netcabo.pt

p.s.: sorry for my (sometimes) bad english :p
 
Jamespotter:

Your example is fine, but you should refer the post vars using the $_POST array.

In the new versions of PHP, well since 4.1, PHP is set by default to not convert the form vars to $varname. You should use $_POST[&quot;varname&quot;] or $_GET[&quot;varname&quot;] (depending of the method of the form)

Anikin
Hugo Alexandre Dias
Web-Programmer
anikin@anikin-skywalker.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top