how to develop website in hindi
Moderator: General Moderators
how to develop website in hindi
Hi frndz,
May be, this question have been asked earlier also. I want to develop a website in hindi but don't know from where I should start.
anybody have better idea.....
May be, this question have been asked earlier also. I want to develop a website in hindi but don't know from where I should start.
anybody have better idea.....
Re: how to develop website in hindi
Aside from the tags themselves (<strong><body>, etc), a webpage doesn't have to be in English. The text you display to the use can be in any language.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Re: how to develop website in hindi
ok, I got it, how to display hindi in simple HTML page but above this.
I want values in my input fields of form to be filled in hindi.
Now how to do that??.........
I want values in my input fields of form to be filled in hindi.
Now how to do that??.........
Re: how to develop website in hindi
Same as you would do in English (or Klingon, for that matter). Except just type Hindi content 
Try this:
Try this:
Code: Select all
<input type='text' name='very_important_field' value='हैलो'>Re: how to develop website in hindi
you are getting me wrong, I dont want default value in hindi. I want values entered in text field to be displayed in hindi....... 
Re: how to develop website in hindi
Well, that's even easier.. try this:nehrav wrote:you are getting me wrong, I dont want default value in hindi. I want values entered in text field to be displayed in hindi.......
Code: Select all
Hello dear visitor, please type something in Hindi here: <input type='text' name='message_from_user'>- mrvijayakumar
- Forum Commoner
- Posts: 58
- Joined: Tue Aug 18, 2009 12:39 am
- Location: Chennai city, India
- Contact:
Re: how to develop website in hindi
Try using google API -
http://code.google.com/apis/ajaxlanguag ... literation
For storing into Database, go through below URL,
http://www.vijayakumar.org/easy-multila ... g-php.html
http://code.google.com/apis/ajaxlanguag ... literation
For storing into Database, go through below URL,
http://www.vijayakumar.org/easy-multila ... g-php.html
-
manojsemwal1
- Forum Contributor
- Posts: 217
- Joined: Mon Jun 29, 2009 4:13 am
- Location: India
Re: how to develop website in hindi
can we use .EOT for present data in any language.
- mrvijayakumar
- Forum Commoner
- Posts: 58
- Joined: Tue Aug 18, 2009 12:39 am
- Location: Chennai city, India
- Contact:
Re: how to develop website in hindi
I am not that much beware of .EOT fonts, These EOT fonts are designed by Microsoft. So, it will not works in Linux OS. So, better to follow my previous post. Previous answer of mines will be more flexible for all browsers.
- Christopher
- Site Administrator
- Posts: 13596
- Joined: Wed Aug 25, 2004 7:54 pm
- Location: New York, NY, US
Re: how to develop website in hindi
You should be able to use UTF8 for this. Make sure your HTML character set, database encoding and any PHP library (e.g. database or output escaping) you use are set to UTF8.
(#10850)
-
priyankagound
- Forum Commoner
- Posts: 27
- Joined: Thu Sep 19, 2013 2:53 am
Re: how to develop website in hindi
Try this one.
For get font in hindi you have to do something like this.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="hi" />
<title>Hindi Text Example</title>
</head>
<body>
कैसे हो?
</body>
</html>
For get font in hindi you have to do something like this.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="hi" />
<title>Hindi Text Example</title>
</head>
<body>
कैसे हो?
</body>
</html>
Re: how to develop website in hindi
very good hindi site i want to build hindi name website
Re: how to develop website in hindi
This is not difficult, you should add content in Hindi,...