Error in newer versions

0

I have this line on the server that uses PHP and MYSQL in earlier versions than on my local machine, it works perfectly on the server, however on my machine with more current versions it does not work.

Is there a problem with this line in the most current versions of PHP?

<? echo $i++."<font color='blue'>...</font>".$linha['numero_contrato']."<font size='1' face='Verdana' color='blue'>.".$linha['apelido']."</font>"; ?>
    
asked by anonymous 27.04.2017 / 20:29

1 answer

3

Your code is using short_open_tags

This can be modified in the php.ini or .user.ini of your project.

Or to normalize things start with <?php instead of <?

    
28.04.2017 / 14:14