Sorry To anoy any one but i cant seem to get the rawurlencode to work on this:
<TR ALIGN="LEFT" VALIGN="MIDDLE">
<TD ALIGN="RIGHT" VALIGN="MIDDLE">
<FONT FACE="Arial" SIZE="1" COLOR="#000000">
Brand :
</FONT>
</TD>
<FORM NAME='ManuMenu' ACTION='mens-shoes-shoes.php?rawurlencode()' METHOD='get' TARGET="Shoes">
<TD ALIGN="LEFT" VALIGN="MIDDLE">
<?PHP echo"<SELECT NAME='SelectType=$SelectType&tManu' ONCHANGE='document.ManuMenu.submit()' ALIGN='LEFT'>"; ?>
<OPTION VALUE="" SELECTED>Please Select</OPTION>
<OPTION>----------------------</OPTION>
<?PHP
$login="XXX";
$pass ="XXX";
$db=mysql_pconnect("localhost",$login,$pass);
Mysql_select_db("XXX",$db);
MySQL_select_db($db_name,$db);
$sql="select DISTINCT Manufacture from Men_Shoes WHERE Type = '$SelectType' ORDER BY Manufacture ASC";
$result=MySQL_query($sql,$db) or die("Bad query:".mysql_error());
while($myrow=MySQL_fetch_array($result))
{
$Manufacture=$myrow["Manufacture"];
echo "<OPTION Value='$Manufacture'>$Manufacture</OPTION>";
}
?>
<OPTION>----------------------</OPTION>
</SELECT>
</TD>
</FORM>
</TR>
This is the second page and depending on what was selected from the first combo box on the first page determins the values for the second combo box ($SelectType). Now i want to send both that value and the valus selected from this combo box to another page but when i do the = and & change to % values. Where would i use the rawurlencode and how??
Thanks
Dashe
When someone selects something from the combo box i