Is there any way to handle events in php, I’m looking for a way to handle event’s like posting a form.
Thanks,
Sreejith
Is there any way to handle events in php, I’m looking for a way
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.
Posting a form is not really an event: the page is just called (that’s the only event you’ll get as far as i know), but you can check for certain values to be present in
$_GET,$_POSTor the combined$_REQUEST, and act on them.