Completed
Push — trunk ( 38cf29...27162a )
by Justin
08:07
created

index.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
1 ignored issue
show
It is not recommended to output anything before PHP's opening tag in non-template files.
Loading history...
Security Best Practice introduced by
Usage of short opening tags is not recommended as it might leak your PHP code on certain configurations; better use <?php, or <?= in case of outputting.

Short opening tags are disabled in PHP’s default configuration. In such a case, all content of this file is output verbatim to the browser without being parsed, or executed.

As a precaution to avoid these problems better use the long opening tag <?php.

Loading history...