I have an app (CodeIgniter) that uses the
<?=$variable?>
syntax instead of
<?php echo $variable; ?>
and I would like for it to work on my local host. What is it that I need to enable in my php.ini file to do this?
Please note, I am not asking how to enable short_open_tag, but how to enable this in CodeIgniter.
Thanks in advance..
In CodeIgniter’s
config.php:This will also mean that it isn’t host dependent.