I want to have a page run some PHP code when a user clicks on a link, without redirecting them. Is this possible with
<a href=""></a>
or with the javascript onclick event?
|
|
I want to have a page run some PHP code when a user clicks on a link, without redirecting them. Is this possible with
or with the javascript onclick event?
|
||
|
|
|
|
Yeah, you'd need to have a javascript function triggered by an onclick that does an AJAX load of a page and then returns false, that way they won't be redirected in the browser. You could use the following in jQuery, if that's acceptable for your project:
You could also do a post-back if you need to use form values (use the $.post() method). |
|||
|
|
either send the user to another page which does it
or do it with ajax
|
||
|
|
|
|
Link to the PHP script
Why are they clicking a link if it doesn't take them anywhere? |
||||
|
|
|
as others have suggested, use javascript to make an ajax call.
|
||||||
|
|
|
You cant run PHP when a user clicks on a link without leaving the page unless you use AJAX. PHP is a serverside scripting language, meaning the second that the browser sees the page, there is no PHP in it. Unlike Javascript, PHP is ran completely on the server, and browser wouldn't know how to interpret it if it bit them on the rear. The only way to invoke PHP code is to make a Page request, by either refreshing the page, or using javascript to go fetch a page. In an AJAX Solution, basically the page uses javascript to send a page request to another page on your domain. Javascript then gets whatever you decide to |
||||||||||||
|
|
|
If I understand correctly, you will need AJAX. |
||
|
|