
Arabic Webpage
CakePHP is a framework for PHP that helps us to create developing with more security based web applications , cakePHP is famous for their MVC (Model–View–Controlle) and ORM (Object-relational mapping ) last two article we discussed how to create static pages creation, cakePHP installation and its properties. This article explains how we can create an Arabic website or Arabic language support with cakePHP .
With the help of UTF-8 (8-bit UCS/Unicode Transformation Format) Arabic font dream comes alive . UTF-8 variable-length character encoding for Unicode .Unicode is a computing industry standard , nowadays it is used for e-mail’s and web pages.
CakePHP
Mysql
create a data base
“CREATE DATABASE `arabic_demo` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; “ and databse default character defind as utf 8

Database Creating
and Icreated article named table as an example
CREATE TABLE `arabic_demo`.`arcicle` (
`id` INT( 11 ) NOT NULL AUTO_INCREMENT ,
`title` VARCHAR( 200 ) NOT NULL ,
`description` LONGTEXT NOT NULL ,
`status` ENUM( ‘A’, ‘D’ ) NOT NULL DEFAULT ‘A’,
`created` DATETIME NOT NULL ,
`modified` DATETIME NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_unicode_ci
with character set utf8 and same you have to follow in utf8 Unicode table or database creating time
Now your system is ready to run an Arabic language application …

Posted in 



This article seems very helpfull, thanks Zam…………
Nice ,helped me alot in my college assignement. Say thank you for your information.
This is such a great resource that you are providing and you give it away for free. I enjoy seeing websites that understand the value of providing a prime resource for free. I truly loved reading your post. Thanks!
Great article Thank
you so much!