A Web-based Urdu Editor
Why is having a HTML-based Urdu editor so important? After all you could just set a few attributes of the HTML textarea element and you could start typing away both Urdu and English. The input language changes with the keyboard layout selected. As it turns out, this arrangement is not available to the Windows 98 users who still constitute the majority of computer users in Pakistan and probably in India too. The web-based Urdu Pad created by Urdu Life has proved highly popular in the Urdu community. Even many Windows XP and Windows 2000 users use Urdu Pad because of its easy to use and intuitive interface. You do not have to switch keyboard layouts. Instead you can just toggle the input language using the radio buttons. The key mappings, which are similar to those provided by the Urdu phonetic keyboard, are said to be similar to those present in the InPage Urdu composing system.
All of this is very nice until you notice that the people at urdulife.com do not allow the use of the Urdu Pad outside the premises of urdulife.com. That means you cannot integrate this as an input component in your web applications. Urdu Life also safeguards its intellectual property by obfuscating the JavaScript source code of the Urdu Pad. Though it is true that every business has the right to protect its intellectual property, we need more open source way of thinking if we want to promote Urdu. While open source is thriving in the rest of the world, Urdu is still struggling to get out of the stranglehold of closed standards and proprietary software.
Seeing the need for a web-based Urdu editor component that could match in functionality to Urdu Pad, I decided to develop one myself. Considering that I am a novice in JavaScript programming, this task was somewhat daunting. I had set out several goals before starting this development, not all of which I could meet. I wanted to make this a reusable component. I have been partially successful in achieving that goal. The work on Urdu Editor is not finished. I hope that the Urdu community takes interest in this project and contributes to it.
Compatibility Issues
I faced a setback when trying to make the Urdu Editor component compatible with FireFox. It is working only with Internet Explorer at the moment. The working of Urdu Editor is simple. It inspects the key codes in the keypress event and based on the language setting modifies this key code. The event model in FireFox does not allow this alteration of key codes. Maybe there is some workaround for making it work but since this exploration was taking so much time, I gave up on it. I would request my friends with JavaScript expertise to inform me of any workaround, if there is one.
Licence
I am distributing the Urdu Editor component under GPL.
Use
The Urdu Editor is different from Urdu Pad in that you can place as many single-line and multi-line Urdu enabled edit areas on your web page. The keyboard control is not tightly coupled with any one specific edit area. It sends characters to the edit area which currently has focus.
Include the following line in you HTML code before you can use the Urdu Editor:
<script language="javascript1.2" type="text/javascript" src="yourpath/UrduEditor.js"></script>
where yourpath is the path to the JavaScript file UrduEditor.js. Now you have to call the initUrduEditor function as shown in the following.
<script language="JavaScript" type=text/javascript>
initUrduEditor(cssPath);
</script>
As is shown by the semantics, cssPath is the relative path to the UrduEditor.css file. The function initUrduEditor initialises some variables and event handlers.
After the necessary initialisation, there are more than one ways to create an Urdu edit area in you web page. One possibility is to call the writeUrduEitor function. This function has the following semantics:
WriteUrduEditor(id, rows, cols, pointsize);
id is the identifier assigned to the edit control. The rows parameter determines height of the edit control. An input element of type text is placed if rows is equal to one, otherwise a multi-line textarea is created. The width of edit control is determined by the cols parameter and the pointsize parameter sets, well, the point size of the edit area. The Urdu Editor uses the Urdu Naskh Asiatype font. Use of this font makes sure that Urdu Editor also works in Windows 98.
There are situations where you may want to customize the edit areas of existing web pages. An existing edit area can be converted to an Urdu Editor control by carrying out the following steps:
- Assign an id to the edit control if it already does not have one
- Set the attributes
lang="ur"anddir="rtl" - Apply the appropriate style e.g.
style="font-family:Urdu Naskh Asiatype; font-size:16" - set the event handler,
onfocus="setEditor(this)" - set the keypress event handler,
onkeypress="processKeypresses()" - set the event handlers
onclick="storeCaret(this)" onkeyup="storeCaret(this)"
I have provided a function makeUrduEditor(id, pointsize) which does almost all of the above for an edit control identified by id. Strangely enough, setting the onfocus event does not work with makeUrduEditor. Therefore onfocus must be manually set as described above.
The keyboard control has a table-based layout. As you can see from the source code, it expands or shrinks to fit the space provided. How the keyboard control appears on screen and how easily it is accessible for all edit areas depends on how the web page was designed. The toggle language buttons are also part of the keyboard control. Calling the writeKeyboard function creates the keyboard control.
Example: Integration into phpBB
Our friend Qadeer was especially getting impatient to get his hands on the Urdu Editor because he wanted to integrate it with phpBB. In his opinion such a control would go a long way in promoting Urdu on the net. We have to wait and see if he his prognosis is right. I successfully integrated the Urdu Editor inside phpBB’s post page. I am including the modified template file posting_body.tpl in the download. First of all I copied the files UrduEditor.js and UrduEditor.css into the folder templates/subSilver/ and then added the reference to UrduEditor.js to the posting_body.tpl template file. Following shows the inclusion of the reference to the UrduEditor.js file and the call to the initUrduEditor function.
<script language="javascript1.2" type="text/javascript" src="templates/subSilver/UrduEditor.js"></script>
<script language="JavaScript" type="text/javascript">
initUrduEditor('templates/subSilver/');
</script>
There are two single-line edit controls and one textarea element on the posting page. The single line edit control correspond to the user name and the subject fields and hence are assigned name values of “username” and “subject”. As described above, I assigned id’s to both edit fields which were the same as their names. I also added the onfocus event handler. The final touches are given by the makeUrduEditor function call as shown in the following:
<script language="JavaScript" type=text/javascript>
makeUrduEditor("username", 12);
</script>
and
<script language="JavaScript" type="text/javascript">
makeUrduEditor("subject", 12);
</script>
The multi-line textarea element receives the actual message post text. The only customisation required in this case is the assignment of the id as well as the setting of the event handlers onfocus and onkeypress.
The elements on the post page are arranged using a table-based layout. I added another table row and a table cell where I inserted the keyboard control using the follwing code:
<tr>
<td colspan="9">
<script language="JavaScript" type="text/javascript">
writeKeyboard();
</script>
</td>
</tr>
The following figure shows the results of the customisation of the post page.
Download UrduEditor
View demo page
Enhancements
There is still lots of room for improvement. Possible improvements include opening the keyboard control in a separate modeless dialog, a better color scheme of the keyboard layout, adding more key codes and diacritics etc. You are most welcome to take the provided source code apart and introduce enhancements. My request is just to notify me of any new feature that you add or make it yourself available to the others.
Tags: Urdu Editor, Urdu WebPad

March 9th, 2005 at 1:13 am
Thank You very very much Nabeel bhai and Congratulations.
March 9th, 2005 at 6:23 am
->Nabeel: wow….thats something real good, mashaAllah. I liked it and hope it would prove to be helpful in getting people towards unicode Urdu.
March 11th, 2005 at 10:54 am
Good job there, Nabeel.
April 22nd, 2005 at 5:34 pm
UrduEditotr, An Urdu Notepad
This post contains the following sections Introduction Using UrduEditor Where is the on-screen keyboard? Sending Urdu Emails Posting to Yahoo and Google Groups Development Futher Development Download Feedback References Introduction With this post I am presenting you the UrduEditor, a…...
April 29th, 2005 at 11:35 am
Urdu Domain Poll
We are thinking of getting a separate domain for all the Urdu-related stuff we are doing. Help us decide on a domain name by voting for your choice.
April 29th, 2005 at 4:04 pm
Urdu Domain Poll
We are thinking of getting a separate domain for all the Urdu-related stuff we are doing. Help us decide the domain name by voting for your choice.
May 19th, 2005 at 4:53 am
i want to typing urdu in html input box
May 19th, 2005 at 5:13 am
reyaz: Have you visited the demo page. There is an example of the use of the Urdu Webpad. You can type Urdu in the input box as well as in the textarea. This example is also contained in the download.
May 28th, 2005 at 5:24 am
Urdu Editor Lite
I released UrduEditor some time ago. Unfortunately it does not work on Windows 98. I did not realize at that time that right-to-left support needs to be installed in order for UrduEditor to work properly and this support is not…
June 1st, 2005 at 5:07 am
the demo pad looks fantastic. installing software on servers terrifies me, but i’m going to try to get it working on a drupal site I am setting up to replace jngl.editme.com
I live in work in inner city birmingham and I want a multilingual community website where anyone can input in urdu – eventually I want mp3s in punjabi & mirpuri too! (more asian language speakers than writers round here)
June 3rd, 2005 at 4:19 am
I am very poor, my very very required a job
October 18th, 2005 at 4:43 pm
ya sub tu acha hay muger how to down load this
December 6th, 2005 at 8:08 pm
slam bai i am a teacher at a college in uk i wanted to know how would i b anle to download the code so i can teach my students some of the code that u have used. coz i never seen a tool good as this and want to share it with the degree students, slam
December 7th, 2005 at 2:49 pm
Khush Subhani and others, there is a download link at the bottom of the article and it is also working. If you still encounter problems, just tell me. I will send it directly to you via email.
December 20th, 2005 at 2:26 pm
hi i am still encountering problems with the download would it be alright for u to e-mail me the source code thanks
December 24th, 2005 at 12:08 am
Dear Nabeel,
Looks like “Urdu Pad” at “Urdu Life” is unavailable for a while now. I have tried to download UrduEditor but its not working. Moreover, I am unable to type anything on demo page.
Would you please tell me, what am I doing wrong?
Thanks,
Sofia
December 29th, 2005 at 10:43 pm
p[ ur] iar jawa skrpT to Thik kr diN?
January 6th, 2006 at 8:49 am
Sofia: Please have a look at the download section of the Mehfil forum (http://www.urduweb.org/mehfil/dload.php). There I have put together the Urdu related freeware that I have written. You can download the UrduEditor which you can find there under the name Urdu WebPad. I am working to improve it, so keep a tab on it.
January 19th, 2006 at 12:03 pm
Sir i want to send e-mails and chat my friends in Urdu.plz help me
January 19th, 2006 at 8:21 pm
Imran: You can find the method of sending emails in Urdu on the following link:
http://urdublog.blogspot.com/2005/09/blog-post_112612910895416454.html
You can use the Urdu Link software (http://urdulink.com/) for chatting in Urdu, although I have never used it. If you have further questions, post your questions on the Mehfil forum (www.urduweb.org/mehfil).
January 23rd, 2006 at 3:04 pm
Dear Sir,
If I receive Urdu text for editing in pdf or word format, how can make changes in the text or edit it?
Thank you.
January 31st, 2006 at 11:41 am
Dear Sir,
I would like to use urdu language in ASP database website. How can i enable user to input urdu text.
January 31st, 2006 at 11:48 am
Can somebody tell me, how to use Urdu fonts in Adobe Photoshop and MS Access.
Thanks..
jent_2003@hotmail.com
March 3rd, 2006 at 4:55 am
Where is letter “pay”?
Regards
Yahya
March 5th, 2006 at 12:00 am
Finally, something great! This was badly needed.
Even though a lot of fancy softwares are available but we didnt have an open source freely-available (notepad like) Urdu editor and similar web based editor.
This really would help promote standard urdu content on the web. Great work!
March 19th, 2006 at 6:55 pm
could any one plz tell me that how to write text on picture using inpage
i want to add picture and write text over that … i think you are geting what i m saying is this possible in INPAGe or have to use some other tool plz help thnx
May 27th, 2006 at 11:19 pm
Aoa
Hi Nabeel
very good work. I have one question regarding Urdu Editor in phpbb. I copied files you provided in phpbb. I can see everything ok but only button for urdu is not working. I click on it but it jump again on English button automatically. Can you please tell me whats wrong there or what should I change to fix it.
Thanks in advance
Qamar Tarar
May 30th, 2006 at 9:16 am
Tarar: It would be better if you dowload the Urdu phpBB pack . This is a complete Unicode Urdu forum software. You can read more about it here.
May 31st, 2006 at 8:21 am
Thanks Nabeel.
Tarar
Germany
July 29th, 2006 at 9:51 am
اردو کیلئے خدمات قابل داد ہیں۔
اردو کمپوزنگ یا کسی نوعیت کی کام کی ضرورت ہو بلا معاوضہ مدد کیلئے تیار ہوں۔
ای میل ایڈریس۔ murtaza682001@yahoo.com
August 8th, 2006 at 10:09 pm
I have some feature requests:
1. A small button to change the editing area background. it is green now and painful for my eyes.
2. Can’t we get Urdu Editor, Urdu Editor Web Edition and Urdu Editor lite in Debian Packages? It would be great help for linux users to install a notepad like application to write Urdu files and save them.
3. Saving files remind me suppose if I write a page in Urdu web editor and suddenly the power goes off (a common problem in Karachi). How could I save what I have written and re-open it again in Urdu web editor using firefox?
August 24th, 2006 at 6:44 am
I greately appreciate this work. Surely you are doing great. May Allah give you reward for this.
August 27th, 2006 at 12:16 am
بہت اچھا پروگرام ہے۔ مجھے اسی کی ضرورت تھی
September 2nd, 2006 at 6:51 am
Asslam-o-Alykum!
I want to make a windows based application in urdu how is possible.
how to stor and retrieve data from data base and how to write data in text box.
plz. help, if possible send me a small application
allah hafiz.
September 8th, 2006 at 4:57 pm
i want to urdr font
September 11th, 2006 at 11:18 am
If you can provide me a urdu phonetic keyboard, I have need it. I have been installed urdu language from “Regional & Language Option” but it is not properly works becuase of the Keyboard Layout. I have in need of a phonetic urdu keyboard layout which should also be published, becuase, other phonetic setups can not do the job due to unknown published edition. Please do something for me, if you can.
September 13th, 2006 at 1:46 am
Saqib: Try asking here.
Umer: Urdu fonts.
Zeeshan: Try Urdu Sautee 2 keyboard. It is well-documented.
September 19th, 2006 at 4:24 pm
آپ کی یہ کوشش یقیناقابل شتائش ہے خدا آپ کے علم میں مزید اضافہ کرے
September 26th, 2006 at 9:25 am
کیا کوئی یہ بتائے گا کہ اردو “او سی آر” سافٹ ویئر، جو سکین کئے گئے الفاظ/ تحریر کو ٹیکسٹ میں بدلے، کیسے مل پائے گا؟۔ شکریہ
October 23rd, 2006 at 9:31 am
http://www.geocities.com/kurdupk/index.htm
اس سائٹ میں کھانیاں مضامین وغیره ھیں
December 30th, 2006 at 4:34 pm
“p[ur] (urdu). salam i see this site and really like it because i have a big problem to use urdu in webpages and in adobephoto shop. i hope this site will provide more gudience for new learners.”
December 30th, 2006 at 4:39 pm
nice site
January 22nd, 2007 at 7:23 am
asalm o alikum
can anyopne help me in defining how can i use urdu in php mysql?
i want to enter urdu daa in php my sql
i am usin g php my admin… it displays exact fonrts but when i open site then fonts r displayed in ??????? form…
January 24th, 2007 at 6:45 am
AA
WE WANT ONLY URDU LANGUAGE WEB SITE PLZ
March 10th, 2007 at 11:53 am
some characters dont show up at my PC. Characters include “bari yay”, “Hay with single hole” etc. I have not tried all though. I am also working on a similar project. Nabeel bhai can you help me in this regard that why dont these characters show up when i am using tag or multiline input box. These characters work very well when i am using single line input box. Is there a workaround to this issue as well? I will appreciate if you can reply to my email.
Thanks
March 13th, 2007 at 11:24 am
This is greate effort. I have downloaded the code and it works fine. I am working on to create ASP.Net custom control that will encapsulate functionality in reuseable ASP.Net server control.
March 13th, 2007 at 6:41 pm
Basharat, that sounds great. Do tell us about your work after it is finished.
March 14th, 2007 at 8:35 am
Dear Nabeel
Today, I created a working ASP.Net 2 Web Server Control. I am going through testing this initial version. Upto now, I have tested using ASP.Net 2 pages (including Latest MS AJAX Extension) with data binding using data bound controls and SQL Server. Results seems to be OK and it is working.
If you want I can send you the DLL + Source ?
I also added some missing characters in keybaord shown on Page. In fact I created two controls, one TextBox and one Keyboard Control. Also added one java script for language control from ASP.Net.
May 24th, 2007 at 7:19 pm
Salaam
Nabeel
Have you tried Urdu Text in mysql databases ? Did it work ?
Great job indeed. People like you can change the future of Pakistani websites.
May 25th, 2007 at 12:15 pm
Khan: this very blog contains numerous posts in Urdu which are stored in a MySQL database. Further, the data of the Urdu Mehfil forum and other Urdu forums is also managed inside a MySQL database.
June 23rd, 2007 at 7:14 am
اردو ایڈیٹر میں
ھاستعمال نہیں ہو رہی مدد کریںٴ شکریہJuly 14th, 2007 at 2:21 pm
I need this editor, but the Download link is not working for me, please check the link
July 19th, 2007 at 10:10 am
لگتا ہے یہ کی سافٹ ویّر
Firefox میں بھی اچہی طرح کام کرتا ہے۔۔۔۔
July 19th, 2007 at 10:34 am
Nabeel bhi,
Perhaps Urdu characters will be saved in MySQL tables, not as they are shown, but in the codes like ...; etc. Don’t they?
If they do, we should be more careful regarding field types. For example, a VARCHAR (20) field will accept 20 English characters, but will not accept 20 Urdu characters, since they are actually much more than 20…..
Is it true? Please help me.
Thanks.
July 23rd, 2007 at 9:14 am
[ur] asghar
July 24th, 2007 at 4:39 pm
I desperately need your help to install urdu phpbb on my web site, please contact me directly. I have a server on http://www.godaddy.com with mysql databases with lots of space and I am paying for it. I will appreciate your help, god bless you.
July 29th, 2007 at 9:00 am
چوده اگست انیس سو سینتالیس کو پاکستان ایک آزاد مملکت کی حیثیت سے دنیا کے نقشے پر ابھرا۔ انگریز و هندو کی دوهری غلامی سے نجات حاصل کرنے کےلیے ملسمانان ھند نے الله سے گڑ گڑ گڑاگڑ کر دعائیں کیں، یاد کیجیۓ یه آزادی ھمارے بزرگوں نے جان و مال کی بے بھا قربانی اور هزاروں فرشته سیرت بھو و بیٹیوں کی عصمت گنوا کر حاصل کی تھی۔
آزادی یقیناً الله کا احسان عظیم اور ایک بھت بڑی نعمت هے لیکن اس کو قائم و دوائم رکھنے کے لیے اس کے تقاضے پورے کرنے پڑتے ھیں۔ هماری آزادی کا اولین تقاضا یه تھا که نظریه پاکستان یعنی اسلامی نظام کا عملی نفاذ کیا جاتا۔ لیکن بدقسمتی سے اس سمت کوئ پیش رفت نه هوسکی۔ آزادی کو مادر پدر آزادی سمجھ لیا گیا۔ قومی وسائل کی بندر بانٹ اور مفاد پرستی کی ایک دوڑ شروع ھوگئ۔ جس کا نتیجه یه نکلا که پاکستان مسائلستان بنتا چلا گیا۔ مھنگائ، بیروزگاری اور بدامنی نے عوام کی زندگی اجیرن کردی۔ یھاں تک که ملک دولخت هوگیا۔ لیکن روز بروز یه مسائل بڑھتے چلے گۓ۔ نفسانی خواهشات کو بھڑکانے والے پروگرام ترتیب دیۓ گۓ، راگ و رنگ اور رقص و سرور کی محفلوں کی حوصله افزائ کی گئ۔ بجلی کے بدترین بحران کے باوجود عمارات و سڑکوں کو بقعه نور بنا دیا جاتا هے۔
برادران اسلام، ذرا سوچۓ عام حالات میں بھی ایک مسلمان معاشره ایسی بے ھودگی کی اجازت نھیں دیتا۔ لیکن ایسے وقت میں جبکه دنیا کے کونے کونے میں مسلمانوں پر قیامت ڈھائ جارهی هے۔ کشمیر فلسطین افغانستان عراق اور چیچنیا میں ایک عرصے سے خون مسلم سے ھولی کھیلی جارهی تھی لیکن گذشته ماه سے اسرائیل امریکه کی شہہ پر لبنان کے بے گناه شهریوں پر جن میں بچے بوڑھے خواتین شامل هیں اندھادھند بمباری کے ذریعے ظالمانه طریقے سے ان کا قتل عام کررها ھے۔ آیۓ هاتھ میں هاتھ ڈالیں اور الله تعالیٰ کے دین کے غلبه اور اس کی اقامت کے لیے اپنا حصه ادا کریں۔ تاکه الله کی کتاب و اس کے رسول کی سنت کی روشنی میں اور مصور پاکستان علامه اقبال اور معمار پاکستان کے تصور کے مطابق یه ملک صحیح معنوں میں ایک اسلامی فلاحی مملکت بن سکے۔
September 22nd, 2007 at 1:19 am
assalam o alikum brothers.mery pass inpage3 hai mai is mai font install karna chahta hoo.kis tara install karo fonts kol
October 12th, 2007 at 8:51 pm
i want URDU language softwares
just like MS WORD
November 14th, 2007 at 3:13 pm
dear sir
i need a littel help
i’m using urdu editor in my web site after knowing ur efforts for urdu.i’ve converted my whole site in both language success fully (english,urdu).
i’m facing problem for numeric value.in english i’ve related some textbox with validation control to check only numeric value could b enterd.but in urdu it show problem .validation control does not take urdu numeric values as numeric value and give error to enter numeric values.
plz note on my master page when language is chaged my all text box converted into urdu editors.
need suport urgently.
regards,
Mohsin Javeed
November 20th, 2007 at 4:41 pm
Dear Brother,
I want to know about UrduPad if we can use it in WordPress as a plugin. And secondly, I tried to download link but I think there is some problem in it. Would you please help in downloading?
regards
Kashif
November 27th, 2007 at 7:55 am
Dear Sir,
Its a nice one for the peoples who is using Urdu Editors.
And I want some clarifications based on this,
I am using IE 6, and when i type the characters of ” h, o, y” the proper letter is not getting.
By the same when i click on the letter “HaH” (third button from left bottom), i am not able to get the exact character.
And if I am using shortcuts for copy, cut and paste it is not working. some other characters are displaying.
When I am typing more lines, and when it exceeds the display of the long rich text box I am not able to view while typing.
But once i press enter key i can view. Again starts typing i am not able to view the text what i am typing.
Let me have some alternate way or a solution for this. So that it will be helpful for me.
Regards,
Kishen Raghav . G
December 27th, 2007 at 10:38 am
پہلا دن ہیڈن، ظہیر، کمبلے کے نام پہلا دن ہیڈن، ظہیر، کمبلے کے نام
February 3rd, 2008 at 9:33 pm
Download link has been updated.
February 22nd, 2008 at 7:44 am
well dear its a nice effort, but please do host on some site like code.google.com or sourceforge.net for open source projects. create a forum for its issues and feature enhancement discussion. I know its good effort but we need it to make it for future need, that is a must, so keep update it. we have to look into some other issue related to web. I know one of urdu text editor developed by Hassnain for desktop called as Raptpad, a platform independent opensource project hosted by sourceforge.net. But your effort for making it for web is good, but i again emphasis on the issues.
Best Regards
Rizwan Yasin Khan
February 25th, 2008 at 5:08 am
hi Nabeel
i again here for giving one more idea for that, Urdu Web Editor.
I have seen an open source editor FckEditor for web http://www.fckeditor.net/, supporting multiple languages. this itself a very big one, please get a look on it. I am interested in to get it localize for Urdu and as well supporting multiple languages for input, considering Urdu as top priority instead of reinventing the wheel. So our effort will not be a waste for getting Urdu Web Pad to this stage where FckEditor is at present, which need lot of time to spent. Please Nabeel and development team i am requesting to introduce Urdu feature for this FckEditor instead of spending time in Urdu Web Editor to make it at this stage.
Best Regards
Rizwan Yasin Khan
February 26th, 2008 at 9:40 pm
Salam: Have a look at the following post:
http://www.urduweb.org/blog/2007/05/86/
It is better to first have a look around before letting loose with your suggestions.
March 7th, 2008 at 6:14 am
Aoa Nabeel,
Great work. Just a small question – whenever I am using a simple FCKEditor to enter Urdu in to MS SQL, I get just garbage there: ?????
What is the reason for that and any suggested remedy?
Best regards
April 17th, 2008 at 10:08 am
i want URDU language softwares
just like MS WORD
June 15th, 2008 at 7:22 am
Can any please tell me where can i find Urdu translator for word press. What i want to do is .. when visitor click on a button .. the website converts into urdu..
Regards
Ali
July 20th, 2008 at 9:52 pm
Asalam oi alikum
Friend aj kal Booting ek aam showsha ahi lekin aj mey aap logo k liye eshi site laya ho jis k mey aap ko Anti booters aur bhot sarey Softwares miley gey
http://rssfa.blogspot.com