I have a problem to insert urdu news in mysql data_base using PHP.
HTML
<form method="post" action="">
<textarea name="content">Insert news article here.</textarea>
<input type="submit" value="Submit"/>
php
$content = $_POST['content']; $queryNews = "INSERT INTO yob_news (title, content, date) VALUES('$title','$content','$date')";
mysql_query($queryNews);
After insertion
Already add
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8"/>