i have one old website where my php tag start from
<?
now i want to run on new server with php 5.x.x its not working
its working on
<?php
can i avoid this…
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You will have to enable shorts tags:
from php.ini
Note:
That would work if:
Suggestion:
You should make it a habit of yours to always write full php tags
<?php...?>because short tags have shown security concerns and won’t be supported in the future versions.