[PHP] Re: Creating graphs with PHP?

2003-03-20 Thread Joseph Szobody
Dennis,

Try this:

http://www.aditus.nu/jpgraph/

Joseph

Denis L. Menezes [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]
hello friends,

Is there a possibility to create graphs on a web page using PHP?

I have loooked through the PHP manual but cannot find anything.

Thanks very much.
Denis


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: Creating graphs with PHP?

2003-03-20 Thread Christopher J. Crane
JPGRAPH is the best I have found so far. Good documentation and great
results. I use it for a lot of graphing purposes, the most being stock
market charts and graphs.
Joseph Szobody [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
Dennis,

Try this:

http://www.aditus.nu/jpgraph/

Joseph

Denis L. Menezes [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
hello friends,

Is there a possibility to create graphs on a web page using PHP?

I have loooked through the PHP manual but cannot find anything.

Thanks very much.
Denis



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: Creating graphs with PHP?

2003-03-20 Thread Denis L. Menezes
Thanks guys for the help.
I went to see JP graph. But what I cannot find out is how I can install
jpgraph and GD libraries if I am hosting my site on a shared server with an
ISP(one of those USD 24.95 per month with 200Mb space kind of thing).

Please help.

Denis

- Original Message -
From: Joseph Szobody [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, March 20, 2003 9:24 PM
Subject: [PHP] Re: Creating graphs with PHP?


 Dennis,

 Try this:

 http://www.aditus.nu/jpgraph/

 Joseph

 Denis L. Menezes [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 hello friends,

 Is there a possibility to create graphs on a web page using PHP?

 I have loooked through the PHP manual but cannot find anything.

 Thanks very much.
 Denis


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: Creating graphs with PHP?

2003-03-20 Thread Christopher J. Crane
If PHP is install the GD modules are already there.
Write a should script ?PHP phpinfo() ? and put it on your server and
access it through your web browser. It will tell you if GD is installed and
what version. I do a lot of work with these and would be willing to help you
get started.

By the way, most people here are using a shared hosting environment, myself
included.

Denis L. Menezes [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Thanks guys for the help.
 I went to see JP graph. But what I cannot find out is how I can install
 jpgraph and GD libraries if I am hosting my site on a shared server with
an
 ISP(one of those USD 24.95 per month with 200Mb space kind of thing).

 Please help.

 Denis

 - Original Message -
 From: Joseph Szobody [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, March 20, 2003 9:24 PM
 Subject: [PHP] Re: Creating graphs with PHP?


  Dennis,
 
  Try this:
 
  http://www.aditus.nu/jpgraph/
 
  Joseph
 
  Denis L. Menezes [EMAIL PROTECTED] wrote in message
 news:[EMAIL PROTECTED]
  hello friends,
 
  Is there a possibility to create graphs on a web page using PHP?
 
  I have loooked through the PHP manual but cannot find anything.
 
  Thanks very much.
  Denis
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: Creating graphs with PHP?

2003-03-20 Thread Alberto Brea
If all you need is a simple bar graph, you can:
1. make a 1-pixel gif
2. make a table with fixed-width tds on the same row (e.g. width 10 pixels)
3. in each td you put one gif with img src=xx width=10 height=xxx wherein the 
height is queried from your data source.
4. on the row below you put the day, month or whatever corresponding to the relevant 
gif
You can make it horizontal too.
If you want a line graph, you make a second transparent gif, make this the 
variable-height image, and put the visible gif at the top, so you make the line.
Hope this helps

Alberto Brea
http://estudiobrea.com 


Re: [PHP] Re: Creating graphs with PHP?

2003-03-20 Thread Nikunj Virani
This articles in PHPBuilder are really good starts on the topic:

http://phpbuilder.com/columns/wiesendanger20001218.php3
http://phpbuilder.com/columns/allan2830.php3
http://phpbuilder.com/columns/nasser20030219.php3

Regards,
Nikunj Virani




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php