View Single Post
Old 2005-07-12, 11:51 PM   #2
Halfdeck
You can now put whatever you want in this space :)
 
Halfdeck's Avatar
 
Join Date: Oct 2004
Location: New Haven, CT
Posts: 985
Send a message via ICQ to Halfdeck
For forms, I usually create an HTML page with <form action=file.php method=post(or get)>

Then write in file.php:

<?php

$useremail = $_GET['email'];
$title = $_GET['title'];
$description = ....

?>

Then either build an email message to myself or enter the info into a MYSQL DB (or both).

Let me know if you were looking for more detailed info
__________________
Success is going from failure to failure without a loss of enthusiasm.
Halfdeck is offline   Reply With Quote