ok, i'm really wet behind the ears with PHP -although I have some experience of ecmaScript, vbScript and some programming languages like eifel, pascal
I am using php5 and I'm trying to build a string from a querystring (I have to use a cgi-bin) but I'm failing miserably at even handling the querystring variables
so my url is http://www.mydomain.com/cg-bin/gtime4.php?start=beta0405
gtime4.php
<?php
$start = $_GET["start"];
echo "$start"
?>
but this returns nothing - I have also tried $_REQUEST
please advise