Jump to content

Recommended Posts

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?

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).

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.