Suppose your Zend engine supports the mode <? ?> Then how
can u configure your PHP Zend engine to support <?PHP ?> mode ?
Answers were Sorted based on User's Feedback
Answer / sathish
In the php.ini file you can change the value of
short_open_tag = on in to short_open_tag = off
| Is This Answer Correct ? | 22 Yes | 2 No |
Answer / vijaya
Set this option in php.ini file to allow type of tags.
short_open_tag = On
| Is This Answer Correct ? | 7 Yes | 3 No |
How to download file in php?
How can you create a session in php?
Write a function that takes "depth" as argument and return sum of node's data of that depth. For instance, (0) depth 0 / \ (10) (20) depth 1 / \ (40) (50) depth2 If I pass get_sum_by_depth(2) , it would return 90 (i.e. 40 + 50 )
What is the exact Diff. between include_once() and require_once() in PHP?
Difference among echo, print and printf.
How does php serialize work?
Is php closing tag necessary?
Which functions are used to remove whitespaces from the string?
How do you set the browser timeout?
can we use PGP with PHP?
Tell me how to find the position of the first occurrence of a substring in a string?
What is artisan in php?