Maybe some code helpsπ
Here's the snippet that retrieves from db:
while($getCountry=mysql_fetch_array($sql))
{
echo "<option value=".$getCountry['CountryName'].">".$getCountry['CountryName']."</option>";
}
This is where it gets displayed
<input type="text" name="BillingCountry" value="<? echo urlencode($Country); ?>" readonly="Yes">
This way, URLENCODE is not doing anything. :eek:
If in retrieval i use urlencode($getCountry['CountryName']), then in the second page I get the plus signs........
If I use urlencode in both places, I get % and other characters.......
Any ideas?