Hoal tengo este error me lo marca aquí:
Código PHP:
if ($sql_eic==""){
while ($f=sqlsrv_fetch_array($res))
{
$tipo_anexo="";
$link_anexo="";
$m++;
if (!is_null($f['fecha_hora']) )
{
?>
<tr>
<td><?php echo $m; ?></td>
<td> <a Method="GET" href="w_imprimir_evento.php?ev=<?php echo $f['id_evento'];?>" target="_blank" onClick="window.open(this.href, this.target, 'width=800,height=600'); return false;"><?php echo utf8_encode($f['evento']); ?></a></td>
<td><?php echo utf8_encode($f['instancia']); ?></td>
<td><?php echo utf8_encode($f['invita']); ?></td>
<td><?php echo utf8_encode($f['planmm']); ?></td>
<td><?php echo utf8_encode($f['financiamiento']); ?></td>
<td><?php echo utf8_encode($f['asistio_representante']); ?></td>
<td><?php echo utf8_encode($f['orientacion_politica']); ?></td>
<td><?php echo utf8_encode($f['fecha_hora']); ?></td>
</tr>
<?php
}
}
en la variable $res hago lo siguiente:
Código PHP:
if($filtro_fecha=="on"){
$e_fecha=" ENTRE LAS FECHAS: ".$fecha_ini." Y ".$fecha_fin;
$sql_eic = "fecha_hora >= '".fecha_sql($fecha_ini)." 00:00:01' and fecha_hora <= '".fecha_sql($fecha_fin)." 23:59:59' ";
}
if($filtro_select=="on"){
$sql_eic = $filtro." like '%".$busca."%' ";
}
if($filtro_select=="on" && $filtro_fecha=="on"){
$sql_eic = $filtro." like '%".$busca."%' and fecha_hora >= '".fecha_sql($fecha_ini)." 00:00:01' and fecha_hora <= '".fecha_sql($fecha_fin)." 23:59:59' ";
}
if($sql_eic!=""){
$sql="SELECT * FROM dbo.EVENTOS WHERE ".$sql_eic;
echo $sql;
$res=sqlsrv_query($con,$sql);
}
}
ayudaaaaa!!