Hi folks, I'm working with php (version 5.6.22-4) on the osgeolive platform (version 10.5) and I'm having problems with php opening tags. if I put
<?php
I get this on the web if I put
<?
I attach the PHP code of the file listClients.php
<?
// capa control
require_once('modelo.php');
require_once('accesoadatos.php');
$objClienteAD = new clienteAD;
$listaCliente = $objClienteAD->listar();
?>
<table>
<tr>
<td class="auto-style1" style="width: 70px">Id</td>
<td class="auto-style1" style="width: 222px">Nombre</td>
<td class="auto-style1" style="width: 88px">Estado</td>
</tr>
<?
foreach($listaCliente as $cliente)
{
?>
<tr>
<td style="width: 70px"><?php echo $cliente['ruc'];?></td>
<td style="width: 222px"><?php echo $cliente['nombre'];
?> </td>
<td style="width: 88px"><?php echo $cliente['estado'];
?> </td>
</tr>
<?
}
?>
</table>
Does anyone know where the problem is? PS: this example code worked previously but then this started to happen