Hello I am trying to get special characters to insert into MySQL, as I can't use them.
This what I got so far...
   mysql_query("UPDATE profiles SET .mysql_real_escape_string playground='$_POST[playground]' WHERE
     username='$_SESSION[membersusername]'");
The text form is
<form method="POST" action="playground.php?action=edit">
            <table width="100%" border="0" align="center">
  <tr>
    <td width="341">Playground<br><textarea name="playground" id="maxLength" rows="5" cols="50"><? echo $playground ?></textarea></td>
  </tr>
  <tr>
    <td><input type="submit" name="submit" value="Update" /></td>
  </tr>
          </table>
  </form>   
Hopefully someone will help.
 
     
     
     
    