Hello,
I just installed php 5.2.
I realize that php files should begin with:
<?php
and not just:
<?
I will get into the practice of starting a php file correctly. But, I have many files that just start with <?
Currently, php will not process these files. Is there a setting thatI could alter to make php process these files too?
Thanks.
porcess files with <?
Moderator: General Moderators
Re: porcess files with <?
yes, turn on short_open_tag in php.ini.
Re: porcess files with <?
Thanks, it works!