Paul Reyes

Members
  • Content count

    3
  • Joined

  • Last visited

About Paul Reyes

  • Rank
    Forum Newbie
  1. Php, Mysql, Fusioncharts

    Have you tried adding $x = $_POST["x"]; before the query?
  2. divide y axis scale

    Try adding yAxisMaxValue='60' to the <chart> element.
  3. Multidimensional Dimensional Array from MySQL

    You need to use mysql_result first and push the results of the query into an array. $result_num=mysql_numrows($result[1]); $i=0; while ($i < $result_num) { array_push($someVariable[1],mysql_result($result_num,$i,"<fieldname>")); $i++; }