Hey everyone I need help making a simple form excatlly like this http://www.sjmast.com/register2.htm I want it to go to a thank you page. which is easy to intergrate. Can anyone help me with this I am willing to pay.
Don't pay anyone for something this simple. You need a database set up for this or you can save the info on flat files on the web server. Ex: <?php // ... check the submitted POSTs with some regex... $db->query("INSERT INTO users ('name', ...) VALUES ('$name')"); // or... $ob = fopen($file, 'a'); fwrites($name . '|' . $whatever); // Ex: Joe|2979842 fclose($ob); // ... PHP: