Jump to content

Execute a Mysql Query when hyperlink clicked


Vivid Lust

Recommended Posts

The ideal way would be to use ajax (I prefer xajax).  Otherwise the best way is to have it refresh the page with a get variable attached, and then run the query based off of the $_GET Variable.

 

Example:

 


<?
if(isset($_GET['command'])){
$command = $_GET['command'];

$query = "SELECT ... WHERE `field` = '$command'";
$run = mysql_query($query);

}
?>

<a href="#" onclick="window.location='filename.php?command=runQuery; return false;">Run Query</a>

 

You'd have to write the query to do whatever it is you need.  But that shows you an example of having a link run a php command.

Link to comment
Share on other sites

Could you give an example with the following code to add +1 to hits?? Thanks

 

//connects to mysql .... then
$query = mysql_query( "SELECT id, image, url FROM banner WHERE id = '{$_GET['id']}'" )
or die(mysql_error());
$row = mysql_fetch_assoc($query);

echo( "<a target=_blank href=" );
echo $row['url'];
echo( ">" );
echo( "<img border=0 src=" );
echo $row['image'];
echo( ">" );
echo( "</a>" );
?>

Link to comment
Share on other sites

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.