How to insert values from form into database table when it is sent as mail?

smm
Newbie Member
18Oct2006,18:39   #1
smm's Avatar

I have used a javascript to send a mail to the client which contains some values from the form..what should i do to enter these values into the database table at the same time it sends a mail..actually when the submit button is clicked it redirects to another page..

is there any way to clear this problem..
Team Leader
19Oct2006,11:09   #2
pradeep's Avatar
JavaScript can't send mail on its own, you must be submitting the form data to a server-side script with sends out the mail, if you can write a server-side script with accepts the form data, inserts it into the database and then sends out the mail, then your problem is solved.
JavaScript is a client side scripting language, its capabilities are limited to the machine it is executed on (i.e. the client's browser), so you have to post the data to some server-side script.
Go4Expert Member
19Oct2006,20:57   #3
ryan's Avatar
Try using a simle PHP script