Use php to pass parameters in the url
I want to pass the parameter topic on the url like this:
http://www.cycsf.org/eventdetails.php?topic=1
Here’s how it can be done in php:
if (isset($_GET['topic']))
$topic_id = (get_magic_quotes_gpc()) ? $_GET['topic'] : addslashes($_GET['topic']);
else
$topic_id = ””;

