Buenas. Tengo un probema. Estoy desarrollando una aplicación en PHP y dadas mis necesidades incorporé javascript, jquery y json. Ahora bien. Tengo dos rutinas iguales escritas en php que recuperan los datos de sus tablas respectivas pero a la hora de ejecutarlas, el navegador me muestra los datos de una pero no de la otra. Lo raro es que el código es casi idéntico.
RUTA_GET.PHP
Código PHP:
Ver original<?php
$page = isset($_POST['page']) ?
intval($_POST['page']) : 1; $rows = isset($_POST['rows']) ?
intval($_POST['rows']) : 10;
$offset = ($page-1)*$rows;
include 'conectar.php';
$where = "origendestino like '$origendestino%'";
$rs = mysqli_query($conexion,"select count(*) from ruta where " . $where); $resultado["miruta"] = $row[0];
// $rs = mysqli_query($conexion,"select * from proveedor where " . $where . " limit " .$offset.",".$rows) or die (mysqli_eror());
//$sql="select * from proveedor where " . $where . " limit " . $offset. "," .$rows;
$sql = "select * from ruta where " . $where . " limit $offset,$rows";
}
$resultado["rows"] = $items;
?>
VEHICULOS_GET.PHP
Código PHP:
Ver original<?php
$page = isset($_POST['page']) ?
intval($_POST['page']) : 1; $rows = isset($_POST['rows']) ?
intval($_POST['rows']) : 10;
$offset = ($page-1)*$rows;
include 'conectar.php';
$where = "patente like '$patente%' and marca like '$marca%'";
$rs = mysqli_query($conexion,"select count(*) from vehiculo where " . $where); $result["total"] = $row[0];
// $rs = mysqli_query($conexion,"select * from proveedor where " . $where . " limit " .$offset.",".$rows) or die (mysqli_eror());
//$sql="select * from proveedor where " . $where . " limit " . $offset. "," .$rows;
$sql = "select * from vehiculo where " . $where . " limit $offset,$rows";
}
$result["rows"] = $items;
?>