Hi,
I am trying to force a script running on an old server to work under PHP 3.
The following line pulls the search term from a search form to process and then passes it on:
$mt = urlencode($_GET["mt"]);
The urlencode seems to be hanging things up as if I hard code the mt variable all works well.
I tried:
$mt = $HTTP_GET_VARS["mt"];
which works for single term searches (i.e. "cars") but not for multiple terms (i.e. "ford cars").
If anyone has any ideas on other workarounds I would be appreciative.
Thanks,
Keith