I want to know when a link is clicked with php.
Can anyone tell me how to do that?
I want to know when a link is clicked with php. Can anyone tell
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’t. PHP is a preprocessor on the server side and doesn’t know anything about what happens on the client side (the browser).
What you can do is create either an AJAX request that will call a PHP script on your server whenever the user clicks the link, or point the link at a PHP script directly.