plotting Graph with flot
I want to plot graph using flot and mysql but an exception occurs getData.php $sql = mysql_query("SELECT count(Msg_ID) as msgCount,From_user FROM Messages GROUP BY From_user"); echo "["; while($result = mysql_fetch_array($sql)) { //print_r($result); echo "[".$result['msgCount'].",".$result['From_user']."]"."\n"; } echo "]"; And for plotting <div id="plotarea" style="width:600px;height:300px;"> <script type="text/javascript"> var options = { lines: { show: true }, points: { show: true }, xaxis: { min:0,max:5 }, yaxis: { min:1 ,max:60}, }; $.ajax({ url:"getData.php", type:"post", success