Reputation: 747
In php how to enablw short_open_tag to 1/true in certain pages?
Upvotes: 1
Views: 316
Reputation: 944442
Not recommended but, based on the manual for ini directives and setting them inline:
ini_set ( 'short_open_tag' , '1' );
… in newer versions of PHP, you can't set this from within the page.
Upvotes: 1