I have this onclick="ShowSingleNew(299)"
event for a link and it opens up a new popup, what I'd like to do is extract the 299
(which is an id of the given new item) and pass it in my php script so that that would be the item the user can read.
The php bit looks like so:
if (empty($_GET['news_id'])) { sql select .. }
else { sql select where news_id == $_GET['news_id']; }
So how can I pass this ShowSingleNew
id to the next page and give it to the $_GET variable?