Posted by NRJ on 04/03/07 20:30
Hi,
I've got a form with textbox (Description) in it. Whenever I want to
insert a word with the character é it will result as éé in my MySQL
table when I look in the phpadmin.
The code is like:
$Description = $_REQUEST["Description"];
$result = mysql_query("Insert into Sites (SiteDescription) Values
('" . $Description . "') ",$link);
if (!$result) {
echo "no results" ;
} else {
echo $result . "Added<br><br>";
}
Please advice...
Thanks
Niels
Navigation:
[Reply to this message]
|