Forum Moderators: coopster
I have a simple form on my page with a text box and a text area. When ever i put £ in the text box and submit the form, on the other page it shows an  sign before the £. So for example if I submit the form with this value in text box "Under £25". On the next page when i display the variable using PHP it shows me the value like this "Under £25".
I have tried this on my local system and it runs fine but i get this problem on the code uploaded on the hosting server.
follwing is the code for the form and the page where the form gets submited.
<form action="addtype1.php" method="GET" name="eform">
<table width="50%" border="1">
<tr>
<td>Type Name</td>
<td><input type="text" name="typename"></td>
</tr>
<tr>
<td valign="top">Type Description</td>
<td><textarea name="typedesc" cols="30" rows="5"></textarea></td>
</tr>
<tr>
<td valign="top"> </td>
<td><input type="submit" value="Save Type"></td>
</tr>
</table>
</form>
<?
$typename = $_GET['typename'];
echo($typename);
?>
For more info, try this threads
[webmasterworld.com...]
coopster has some additional links in the last post in that one.