I\'m trying to store the following line in mysql:
$data = \"After 30μs, what fraction of the charge will remain?\"
If I display $data on HTML P
You need to set database connection encoding:
mysql_set_charset('utf8');
Or similar method, depending on your database library.