How can I make a script that can be bilanguage (supports
English, German)?
Answers were Sorted based on User's Feedback
Answer / koushikgraj
1. create different files to store different languages
eg: languages/eng.php
languages/ger.php
2. add constant variables in both the files
eg: languages/eng.php :: define('QUES','How are you');
eg: languages/ger.php :: contains define('QUES','Wie geht
es Ihnen');
3. in template page need to use the constant variable to
load the different language
eg: <div><?php echo QUES;?></div>
4. load different files according to language request
5. ofcourse we need to use characters encoding UTF-8 in HTMl
or PHP pages.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / hitesh patil
See PHP Scripts can be written only in english. If you want
support, i mean you want to see pages in Other languages
then use characters encoding UTF-8 in HTMl or PHP pages.
It will work.
| Is This Answer Correct ? | 5 Yes | 6 No |
Explain the types of functions for Splitting String?
Is php strongly typed?
Differentiate echo vs. Print statement.
What is the difference between array_pop() and array_push()?
I have two radio button, i click one radio button display one dropdown box, one text field. and then click another radio button display one text field.so any one give me good idea plz.....i used <div id="" style=display:none> but not work..
What is default session time and path in php?
Why do we show php code in browser?
Tell me is it possible to remove the html tags from data?
Is array function in php?
What is member variable?
How do you connet mysql database with php?
How do you check if a variable has not been set in php?