Reputation: 3955
How do you enable short tags (i.e. <?
and <?=
) when using WebMatrix as your web server?
Upvotes: 2
Views: 2285
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