Mare
Mare

Reputation: 963

Php line graph by using GD and MySQL data

I'm trying to draw a simple line graph which would use values from the database. At the moment I have a function which gets my data as it should and I also have another .php file which should be the one where the image is constructed.

I've basically used the example from here and it works if the values are typed manually. Nevertheless when I try to call $arrval = functionToGetValues("$keyword"); it just won't work it won't draw anything. I'm guessing it's mostly because the GD is so messed up because it doesn't seem to work too good even with normal php commands.

I think it's unnecessary to post exact code because functionToGetValues works and it just returns an array of values.

I also tried to play with scopes like initializing the $arrvals in functionToGetValues() but it didn't work. My calling sequence was:

/main.php

include "conn.php";

....

dbquery("$keyword");

//in dbquery($keyword)...

$arrval = array(...);

for($i=1; $i<30;$i++)
{
     $sql =  mysql_query("SELECT * FROM table WHERE data LIKE '%$keyword%'") or die("Query error: ". mysql_error());;
     $total = mysql_num_rows($sql);

$arrval [$i] = $total;

}

<img src='imgdraw.php?keyword=$keyword'vspace='50'/>";

I also tried this type of solution but the include "conn.php" just doesn't seem to work with GD -_-. I can't find out the reason :(

Upvotes: 0

Views: 4666

Answers (1)

Robbo_UK
Robbo_UK

Reputation: 12149

If you dont have much luck with GD You could use google's chart tools for generating graphs. I have always found it easy to use and well documented and the graphs it generates look pretty good.

http://code.google.com/apis/chart/interactive/docs/gallery/linechart.html

You would query your database then build up an array before exporting it inside a javascript tag with the a php array with echo json_decode();

Upvotes: 1

Related Questions