how can i create a signup form in php that saves the info into a database, AND e-mails me with the info to. thanks
check out www.webmonkey.com for tutorials.
The skeleton of what you wanna do is:
Create an HTML form with the fields you need. Create the action page which handles the form. After checking the form inputs, insert into db. You can email yourself at the same time.
😃
HTH