I've tried <? print 'hello ' . $_GET['name']; ?> and it works if giving url: test.php?name=neechee
if I just accessing test.php without parameter, I get this message
"Notice: Undefined index: name in /var/www/htdocs/test.php on line 1"
which is unusual as I tested in other webhosting with php. It should be able to get paramter from url using neither $_GET-array nor $HTTP_GET_VARS-array in the php code.
Pls help. I believe that's something wrong in my setting.