0

What is php syntax

I want learn

17th Apr 2017, 6:54 AM
peeyush
2 Antworten
+ 14
awful, is what php syntax is.
17th Apr 2017, 6:55 AM
Ahri Fox
Ahri Fox - avatar
+ 6
One of PHP’s advantages is that it can be embed PHP code directly alongside HTML. For the code to do anything, the page must be passed to the PHP engine for interpretation. For PHP to work you will need PHP interpreter. 1. PHP block <?php //statement goes here ?> 2. Variable declaration <?php $var=2; ?> 3. Printing results <?php echo "Hello World"; echo (4+4); echo $var; ?> 4. if, switch, loops are same as in C/C++
17th Apr 2017, 7:03 AM
देवेंद्र महाजन (Devender)
देवेंद्र महाजन (Devender) - avatar