I try to develope a new application with CakePHP, and in my html tag I have the property lang that support a language iso code in that form en-us
How can I retrive from CakePHP that code for the current selected language;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Since PHP processes before HTML, you can’t. I would suggest using CakePHP to set the language (since it will be handling the translations anyway), then outputting that on your
<html>tag.