TeddyKiller Posted April 1, 2010 Share Posted April 1, 2010 I have an echo, and on it's onclick I want to run a php query. Is this possible? echo '<div style="float:right; width:105px;"><a href="#" onclick="' .$r = mysql_query("DELETE FROM `horblewall` WHERE id=".$r['id'].""). '">Delete</a></div> It's displaying blank. Nothing there. Can anyone help? Quote Link to comment https://forums.phpfreaks.com/topic/197244-how-can-i-do-this-echo-with-onclick-php-query/ Share on other sites More sharing options...
premiso Posted April 1, 2010 Share Posted April 1, 2010 No. PHP is server side, so that query is ran well before the javascript interacts with the client. To do that you would have to have a file.php that the onClick calls or setup AJAX to handle it. Either or should work. The non-ajax method would require a "pop-up" window which you can make auto-closes or a page refresh. The AJAX version would not require either. But this is not do-able with how you are trying to, since PHP is executed Server (before the client sees the page) and JS is executed on the client side (After the php code runs). Quote Link to comment https://forums.phpfreaks.com/topic/197244-how-can-i-do-this-echo-with-onclick-php-query/#findComment-1035334 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.