What I'm wondering is if you are calling the graphic's placing into the page
correctly.  I believe the class will probably work. 

I have a page that includes a graph that I generate using mySQL and PHP.
This is the code I use to actually display the graphic (not what generates
it).

ImageJPEG($pic,$graphname);

echo "<p align=\"center\"><image src=\"$graphname\"></p>\n";

Of course there is a significant amount of code that actually generates
$pic, but this is what I had to do to make the graphic appear.

Robbert van Andel 

-----Original Message-----
From: Jim Hatridge [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 12:03 PM
To: PHP-GEN
Subject: Re: [PHP] Graph Question..


On Wednesday 20 November 2002 20:37, Van Andel, Robert wrote:
> More information would be helpful.  Perhaps the code to the page that is
> causing you trouble (i.e. the one where you are using the class you
> downloaded yesterday).  Perhaps you are missing a key piece there.
>
> Robbert van Andel

HI Robbert et al..

Below is part of the code. I don't think I should send it all to the list, 
it's quite large. Looking at all this I think that I'm missing a lib for 
graphs. But I can't find anything on my SuSE 8.1 disks. What libs do I need 
for doing graphs?

Thanks

JIM


>
> -----Original Message-----
> From: James Hatridge [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, November 20, 2002 7:07 AM
> To: PHP-GEN
> Subject: [PHP] Graph Question..
>
>
>
> Hi all,,
>
> I d/l'ed a class for graphs last night. When I got the class working
> instead
>
> of a line graph I got the netscape symbol for no picture, ie a broken box.
> I
>
> must have missed something. Could someone give me a clue what I'm doing
> wrong?
>
> Thanks
>
> JIM

#############

<?
require "Color.php";
require "Graph.php";
require "Barchart.php";

$white = new Color(255,255,255);
$blue = new Color(0,0,255);
$red = new Color(255,0,0);
$green = new Color(0,255,0);

$line = new Barchart(500,500,$white);

$ar1 = array(12,13,16,2,5,10,0,1,2,8);
$ar2 = array(20,13,-1,2,23,11,1,3,4,9);
$ar3 = array(11,15,20,12,6,-10,28,30,10,0);

$line->addArray($ar1, $white);
$line->addArray($ar2, $green);
$line->addArray($ar3, $red);
$line->printHTML();

?>


##########
-- 
                                    Vielfeind -- Viel Ehr'
Antiamerikanische Propaganda in der Philatelie des 20. Jahrhunderts
          http:/www.fecundswamp.net/~hatridge/stamps/index.html


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


 "The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from all
computers." 


Reply via email to