sreenavc
sreenavc

Reputation: 747

php short tag set to true

In php how to enablw short_open_tag to 1/true in certain pages?

Upvotes: 1

Views: 316

Answers (1)

Quentin
Quentin

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

Related Questions