データベースからアラビア文字を検索するためにphpを使用して検索エンジンを作成しようとしていますが、何も得られませんでしたが、コードは英語の文字と数字で正常に動作します.....ここに私のコード
<?php
if(isset($_POST['submit'])){
if(isset($_GET['go'])){
$name=$_POST['name'];
if(empty($name)) {
echo"Plz enter the Search";
}
if(preg_match("/^[(a-z) (A-Z) (0-9)]+/u", $name)){
//connect to the database
$db=mysql_connect ("localhost", "root", "") or die ('I cannot connect to the database because: ' . mysql_error());
//select the database to use
$mydb=mysql_select_db("student");
mysql_set_charset("utf8");
$sql="SELECT id, fname, lname FROM st_information WHERE id LIKE '%" . $name . "%' OR fname LIKE '%" . $name . "%' OR lname LIKE '%" . $name ."%'";
//Run the query against the mysql query function
$result=mysql_query($sql);
//Create while loop and loop through result set
while($row=mysql_fetch_array($result)){
$FirstName =$row['fname'];
$LastName=$row['lname'];
$ID=$row['id'];
//Display the result of the array
echo "<ul>\n";
echo "<li>" . "<a href=\"show.php?id=$ID\">" .$FirstName . " " .$LastName . "</a></li>\n";
echo "</ul>";
}
}
}
}