Hi
I have a problem when passing a value in a URL.
This code used is a follows;
<?
if ($Select_List) {
$redirectURL = "CompanyDisplay.php?company=$Select_List";
echo '<META HTTP-QUIV="REFRESH" CONTENT = "0; URL= ' . $redirectURL . '"> ';
}
?>
The problem occurs when the value of "$Select_List" contains a text string with spaces e.g. 'American Express'. In this case the value passed is cut off at the first space e.g. American.
Can anyone help ?
Thanks
Nic