-3

I'm using xampp with php 5.6. I am developing a project using laravel and I encountered the following issue:

<? is not recognized as php delimiter within blade templating.

stiGVicious
  • 220
  • 1
  • 10

1 Answers1

1

From the official documentation:

PHP also allows for short open tag <? (which is discouraged since it is only available if enabled using the short_open_tag php.ini configuration file directive, or if PHP was configured with the --enable-short-tags option)

http://php.net/manual/en/language.basic-syntax.phptags.php

t.h3ads
  • 1,858
  • 9
  • 17