I need some help with some coding.
I created a wat for people to click on any link on our website and the link will be placed into their "travel suitcase" Is there a way that i can add a way that people can click on a link which will then remove the entry from the database? or do i have to do this in a sepearte step
<?php
$result = mysql_query("select * from links where aComment like '%$query%'");
while ($row = mysql_fetch_array($result))
{
$title = $row["aTitle"];
$url = $row["aURL"];
$comment = $row["aComment"];
?>
</font>
<a href="<?php echo $url; ?>"><span class="BodyHeading1">
<font size="2" face="Arial"><?php echo $title;?></font></span></a><font size="2" face="Arial">
<?php
echo "<br>";
echo $comment;
echo "<br><br>";
}
?>