Aqui reportandome de nuevo... ia ahora si al parecer me quedo, pero quiero AGRADECERLES A TODOS por las aportaciones... es grato poder contar con personas como ustedes...
Bueno aqui les dejo la consulta correcta para que puedan checarlo...
Código PHP:
Ver original<?php
if (isset($_POST["ACEPTAR"])){ $ART=$_POST["ART"];
$mil=$_POST["mil"];
$mes=$_POST["mes"];
$dia=$_POST["dia"];
$fecha=$mil."-".$mes."-".$dia;
$mil2=$_POST["mil2"];
$mes2=$_POST["mes2"];
$dia2=$_POST["dia2"];
$fecha2=$mil2."-".$mes2."-".$dia2;
("SELECT folio, fecha, unidad, nombre
FROM reporte, usuarios, unidades
WHERE usuarios.id_nom= reporte.id_nom
AND unidades.id_unidad=reporte.id_unidad
AND reporte.id_nom=$ART
AND reporte.fecha BETWEEN '$fecha' AND '$fecha2'");
echo "<table width='800' border='1' align='center'>
<tr>
<th width='center' scope='col'>FOLIO</th>
<th width='center' scope='col'>FECHA</th>
<th width='center' scope='col'>UNIDAD</th>
<th width='center' scope='col'>ATENDIDO POR</th>
</tr>
<tr>
<td>".$fila['folio']."</td>
<td>".$fila['fecha']."</td>
<td>".$fila['unidad']."</td>
<td>".$fila['nombre']."</td>
</tr>
</table>";
}
else{
echo "<div class='Estilo2' align='center'>No existe Reporte</div>";
}
}
?>
CASO: RESUELTO!!!!! GRACIAS!!!