Hola por favor tengo este código que me funciona bien pero quisiera añadirle al final de la lista o datos recuperados un mensaje diciendo cuantos registros se han encontrado.
Código PHP:
Ver original<?php
include("Connections/wedserver2012.php");
if ($_GET["action"] == "listar")
{
// valores recibidos por POST
$emis= $_POST['emision'];
$sql ="(SELECT 1 as qnum,id_aviso,telefonos,telefonos3,movil,dni,name,apellidos,localidad,calle,aparatos,marcas,modelo,codigo,serie,facturacion
FROM avisos WHERE emision='$emis' order by id_aviso )";
}
// Ordenar por
$vorder = $_POST['orderby'];
if($vorder != ''){
$sql .= " ORDER BY ".$vorder;
}
if (!$sql) {
}
'id_aviso' => $row['id_aviso'],
'telefonos' => $row['telefonos'],
'style' => $style
);
}
// convertimos el array de datos a formato json
/* Tienes resultados. */
}else{
/*No tienes resultados. */
echo '[]';
}
}
?>
Código PHP:
Ver originalfunction filtrar(){
$.ajax({
type: "POST",
dataType: "json",
url: "ajax.php?action=listar",
beforeSend:function(){
$('.loader').css({display:'block'});
},
complete: function() {
$('.loader').css({display:'none'});
},
success: function(data){
var html_user ='' ;
if(data.length > 0){
$
.each(data
, function(i
,item
){
html_user += '<tr id="fila1">';
html_user += '<td style="'+item.style+'"><input onClick="marcar(this)" name="demo" type="checkbox" value="' + item.id_aviso + '"/></td>';
html_user += '<td style="'+item.style+'">'+item.id_aviso+'</td>';
html_user += '<td style="'+item.style+'">'+item.telefonos+'</td>';
html_user += '<td style="'+item.style+'">'+item.name+' '+item.apellidos+'</td>';
html_user += '<td style="'+item.style+'">'+item.calle+'</td>';
html_user += '<td style="'+item.style+'">'+item.localidad+'</td>';
html_user += '<td style="'+item.style+'">'+item.aparatos+'</td>';
html_user += '<td style="'+item.style+'">'+item.marcas+'</td>';
html_user += '<td style="'+item.style+'">'+item.modelo+'</td>';
html_user += '<td style="'+item.style+'">'+item.codigo+'</td>';
html_user += '<td style="'+item.style+'">'+item.serie+'</td>';
html_user += '<td style="'+item.style+'">'+item.facturacion+'</td>';
html_user += '</tr>';
});
}