hi friends, i have problem with Arabic language in php page, how i can display the Arabic language in my pages.

You need to make 2 changes
1. Modify your HTML page to set content type has below

<html>
 <head>
  <meta http-equiv="Content-type" value="text/html; charset=utf-8">

2. After mysql_connect() and mysql_select_db() add this line
mysql_query("SET NAMES utf8");

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.