I am using method = post in form

Hi

all

I am using the form to store the data into database. And I am using post method. but when i clicking on the submit button, the values of my form
are displaying in the url bar.

<form name=‘contact_form’ mehod=‘POST’ action=‘testproject/phpmysql/booking_details.php’ onSubmit=‘return validate_form ( );’>

please help me out to solve this issue

Thanks
MD.Samiuddin

<form name=‘contact_form’ method=‘post’ action=‘testproject/phpmysql/booking_details.php’ onsubmit=‘return validate_form ( );’>

// here is your form fields na

</form>

You mispelled method so the form got confused and defaulted to using GET.
Venkat has given you the correct line although I would use double quotes rather than single :wink:

thanks

to all

YES I misspelled the word. after changing the spelling the problem is resolved

Thanks

Md.Samiuddin