Hola amigos del foro, tengo un tremendo lio y como buen aficionado recurro a ustedes, tengo una consulta que realice con JSON, aquí esta mi codigo "consultas.php":
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() .'}}';
}
}
?>
He estado leyendo acerca de este tema y veo que para mostrarlo en un archivo HTML llamado reporte de estadisticas, debo utilizar JQuer y JAVA, pero ahora si me he perdido enormemente no se como hacer para incrustarlo en este archivo, hasta ahora tengo este script:
Código:
$. 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).;
});
y este en HTML:
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>