RE: [PHP-DB] Use php to plot graph.

2001-12-03 Thread matt stewart
yes, it is possible - read up on the .PNG image format, as it is possible to create graphs ind images dynamically to suit the data and figures youve extracted from the database -Original Message- From: Denny Ow [mailto:[EMAIL PROTECTED]] Sent: 03 December 2001 16:14 To: [EMAIL PROTECTED]

RE: [PHP-DB] Use php to plot graph.

2001-12-03 Thread Leotta, Natalie (NCI/IMS)
I'm working on a project right now where we call PHP from within an HTML page, send it vars using a POST method, and then use that to draw a graph. We're drawing bar graphs now but one of my coworkers did a line graph. You call the PHP as an img src tag and have PHP return a .png. We used the

Re: [PHP-DB] Use php to plot graph.

2001-12-03 Thread Daniel Barton
There are a few ways to go about this: You could: 1) Use little image blocks to dynamically build bar graphs. It's not too hard with PHP. Make some little square (or round or whatever) gifs (with transparent edges), and then position them on a background JPEG or gif using DIV tags. Make an

Re: [PHP-DB] Use php to plot graph.

2001-12-03 Thread Jason Wong
On Tuesday 04 December 2001 00:14, Denny Ow wrote: Hi, Jus wanna to ask if it is possible to use php to plot graph using data retrieve from mysql. If yes, how should i go about? Check out the graphics section of http://www.phpclasses.upperdesign.com/. It's got some neat classes for creating