0
I have this line on the server that uses PHP and MYSQL in previous versions than on my local machine, works perfectly on the server, but on my machine with more current versions 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>"; ?>
The idea is to use
<?php
in the of<?
https://answall.com/q/103178/91– rray
And no longer use element
font
HTML, it’s been obsolete for a long time.– Woss
Okay buddy, actually using <?php instead of <? solved the problem...
– Andre Maia