In php how to enablw short_open_tag to 1/true in certain pages?
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.