Sending data from HTML FORM into a DATABASE

Hello programmers,
im almost through with my php/mySQL tutorials. I have learnt about sending data from a php script into a database.
Now i want to do same using HTML form input. But the problem im having is: what do i put in my html form's "action attribute"? Is it a php script or a mySQL script? I know it should have the name of the database table but i dont know how it should be.
Please help a brother out. Thanks everyone.
 

chrishirst

Well-Known Member
Staff member
The URL of the document or script that is going to accept and process the data. Or leave it empty if the same document is handling both the form data input and the processing.
 
Top