not to sound stupid..., but how can i add a query stirng, like the one used in CGI?..... ex:
$qstring = query_string();
if ($qstring eq "news") {
print "<body>this would display the news page when, http://www.whatever.com/script.cgi?news is called... </body>\n";
if ($qstring eq "info") {
print "<body>this would display the info page when, http://www.whatever.com/script.cgi?info is called... </body>\n";
grrr... This should be simple, but i just can't figure it out... anyhelp out there?