fatimadias Posted April 30, 2015 Report Share Posted April 30, 2015 <?php include "../conectar.php"; $cliente = $_GET['cliente']; $sql = mysql_query("SELECT * FROM produtobig WHERE cliente = '$cliente' AND situacao = 'ativa'"); $ativa = mysql_num_rows($sql); ?> <script type="text/javascript" src="https://www.google.com/jsapi"></script> <script type="text/javascript"> google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable([ ['Task', 'teste'], ['Ativo', $ativa], ['Ruptura', 2], ['Fora de Gama', 2], ['Não Pede', 2], ]); var options = { title: 'Produtos Garoto', is3D: true, }; var chart = new google.visualization.PieChart(document.getElementById('piechart_3d')); chart.draw(data, options); } </script> Queria trazer a variável $ativa para dentro do javascript, função array? Quote Link to comment Share on other sites More sharing options...
0 wootzor Posted April 30, 2015 Report Share Posted April 30, 2015 Experimenta assim: function drawChart() { var data = google.visualization.arrayToDataTable([ ['Task', 'teste'], ['Ativo', <?php echo $ativa; ?>], ['Ruptura', 2], ['Fora de Gama', 2], ['Não Pede', 2] ]); //(...) } Quote Link to comment Share on other sites More sharing options...
0 fatimadias Posted April 30, 2015 Author Report Share Posted April 30, 2015 Deu certo, mt obrigada! Quote Link to comment Share on other sites More sharing options...
Question
fatimadias
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.