Código PHP:
<?php
include 'config.php';
//$tab = $_GET['tabla'];
$tab1 = "referencia_extensa";
$tab2 = "referencia_rapida";
$sql4 = "SELECT medio, COUNT(medio) as total from ((SELECT medio FROM $tab1) UNION ALL (SELECT medio FROM $tab2)) as U
group by medio";
//$query = "SELECT * from referencia_rapida WHERE fecha BETWEEN '".$q."' AND '".$r."'";
echo sqlJson($sql4, 'totales');
function sqlJson ($sqlCons, $items){
try {
include 'config.php';
$dbh = new PDO("mysql:host=$dbhost;dbname=$dbname", $dbuser, $dbpass);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$stmt = $dbh->query($sqlCons);
$var = $stmt->fetchAll(PDO::FETCH_OBJ);
$dbh = null;
echo '{"'.$items.'":'. json_encode($var) .'}';
} catch(PDOException $e) {
echo '{"error":{"text":'. $e->getMessage() .'}}';
}
}
?>
Código:
y este en HTML:$. GetJSON ('consultas.php', function (data) { var table = '<table>'; / * Bucle sobre cada objeto en la matriz para crear filas * / $.each (data, function (index, item) { / * Añadir a la cadena html iniciado anteriormente * / table+='<tr> <td>'+ item.medio + '</ td> <td'>' + item.mvp + '</ td> </ tr>'; }); mesa + = '</ table>'; / * Insertar la cadena html * / $ ("#Content") html (tabla).; });
Código HTML:
<!DOCTYPE HTML> <html> <head> <title>Reporte Refrencias General</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script> <script src="js/salida.js" type="text/javascript"></script> </head> <body> <div='totales'> <script> var JSONobject= { "totales"}; document.getElementById("totales").innerHTML=JSONObject.name </script> </div> </body> </html>