jaminto
jaminto

Reputation: 3955

How do you enable short tags for PHP in Microsoft WebMatrix?

How do you enable short tags (i.e. <? and <?=) when using WebMatrix as your web server?

Upvotes: 2

Views: 2285

Answers (1)

Felipe Cardoso Martins
Felipe Cardoso Martins

Reputation: 892

Short open tags is a property of php.ini config file... Do a simple script like this: <?php phpinfo(); and run it to see the location of php.ini file...

Upvotes: 2

Related Questions