I am trying to run a php function based on a button click using jquery but not through a POST. It is a function that is using array data that was printed on the form. Is this possible?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can not run a PHP function from the jquery script, and thanks God you cannot do that. Just think about how it would be dangerous.
Anyway, just look for AJAX. I think that just write you the code will not be as use-full as provide your going to study it. So go and study AJAX so that you will be able to make an async call to a php script that will elaborate GET/POST variable and call the php function.
Or just look at the
post()and theget()functions of jquery.