Jump to content
Fórum Script Brasil
  • 0

Duvida variavel PHP para javascript


fatimadias

Question

<?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?
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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...