Hey Hamish,
You don't need the $ to refer to variables in a querystring or POST request. Therefore:
<?php echo $_GET["title"] ?>
should work for you.
If not, it might be that 'Superglobal' variables aren't available in the version of PHP which you are using. Then you can try:
<?php echo $HTTP_GET_VARS["title"]; ?>
In either case, you don't use the dollar because the 'title' is just an array reference, taken from the Name/Value pair in the querystring, and not a *real* variable.
Hope this helps 
|