I am currently trying to figure something out and i am hitting a brick wall,
I currently have a table that is displaying some mysql search results, Now everything works and looks the way i want it to however i am trying to add a bit more functionality into it,
For each row i am throwing out this
<tr><td class=\"search\">".date ( "Y-m-d", $row->data)."</td><td class=\"search\" width=\"80%\"><a
href=\"file.php=1&article=".$row->id."\">".$row->title."</a></td></tr>";
What i am wanting to do is have it setup so when a user clicks on the href instead of going to another page it will "Slide down" and display the data from that link.
I am not sure what the best way to go about this would be.
Any help would be greatly appreciated
Thanks