Código PHP:
<?
include("conexion.php");
$Link=conexion();
$Cliente=$_POST['Cliente'];
$Proveedor=$_POST['Proveedor'];
$Orden=$_POST['Orden'];
$Objeto=$_POST['Objeto'];
$Duracion_orden=$_POST['Duracion_orden'];
$Fecha_inicio=$_POST['Fecha_inicio'];
$Fecha_vencimiento=$_POST['Fecha_vencimiento'];
$Cdp=$_POST['Cdp'];
$Pedido=$_POST['Pedido'];
$Valor_inicial=$_POST['Valor_inicial'];
$Pago_variable=$_POST['Pago_variable'];
$Pago_fijo=$_POST['Pago_fijo'];
$Vigencias_futuras=$_POST['Vigencias_futuras'];
$Entrega=$_POST['Entrega'];
$Recibe=$_POST['Recibe'];
$Observaciones=$_POST['Observaciones'];
$sql=mysql_query("select Cliente,Orden_contrato,Objeto,Fecha_inicio,Fecha_vencimiento,Cdp,Valor_inicial,Pago_variable,Pago_fijo,Entrega,Recibe,Observaciones from ingreso_interventorias ")
or die ("problemas en el select".mysql_error());
$num=mysql_num_rows($sql);
while($row=mysql_fetch_array($sql))
//echo $num;
{
$Cliente=$row['Cliente'];
$Orden_contrato=$row['Orden_contrato'];
$Objeto=$row['Objeto'];
$Fecha_inicio=$row['Fecha_inicio'];
$Fecha_vencimiento=$row['Fecha_vencimiento'];
$Cdp=$row['Cdp'];
$Valor_inicial=$row['Valor_inicial'];
$Pago_variable=$row['Pago_variable'];
$Pago_fijo=$row['Pago_fijo'];
$Entrega=$row['Entrega'];
$Recibe=$row['Recibe'];
$Observaciones=$row['Observaciones'];
if ($Orden_contrato==$Orden)
{
echo "Con el numero de orden $Orden se encontraron $num resultados";
}
}
?>