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 find the length of a string?
How to download file in php?
Tell me how to initiate a session in php?
How can you declare a constant variable in php?
Is php class name case sensitive?
What is var_dump function in php?
Explain what are the three classes of errors that can occur in php?
Why use php artisan serve?
Which is best framework for php?
What is the maximum size of a database in mysql?
What is difference between required and require_once in php?
How is it possible to return a value from a function?