I see curly braces in HTML code to be used to separate the logic (PHP) from the view (HTML) but I can’t understand it..
for example in phpBB:
<h3>{L_BIRTHDAYS}</h3>
any help will be appreciated
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.
What you are looking at is parsing code. the php parser will consume the html and when it comes across a pattern, in this case {} it will look in its property bag and substitute the values for the variable names inside the {}
You can read more about this sort of thing by googling rendering engines.