OK... I'm driving myself nuts trying to figure out this damn thing..!!
Here's the code...
---------------- snippet ----------------
echo '<form action="WebStore/Shopping/categories/main.php?"><select name=$ID>';
$XX = "data empty!";
$aku = mysql_query("SELECT ID, Description FROM $usertable ORDER BY Description");
while ($row = mysql_fetch_array($aku))
{
$ID=$row["ID"];
$Description=$row["Description"];
echo "<option value=$ID>$Description\n";
}
if ($ID="")
{
print ("$XX");
}
echo "</select>\n";
echo "<input type=submit value=\"View This!\">\n";
print ("<br><br>");
---------------- snippet ----------------
Here's the problem! It shows a URL with %24 in it? I can't get this bug out! It will show this:
http://websystemz.com/WebStore/Shopping/categories/main.php?%24ID=77
Everything is fine, except that %24? I've tried spaces, underscores, question marks, quotes... you name it.
Anyone know how to kill the bug? Your name will be added to the script with email address (if you like) for helping me!
Thanks,
Matt