Re: [php-list] Re: bar chart

2008-10-07 Thread listgroups08
- Original Message - From: "teditkap" --- In php-list@yahoogroups.com, <[EMAIL PROTECTED]> wrote: > > - Original Message - > From: "Tedit kap" > > Hi all, > Can someone refer me to good links or code, for creating a php bar chart > please? > Thanks. > > --

[php-list] Re: bar chart

2008-10-07 Thread teditkap
--- In php-list@yahoogroups.com, <[EMAIL PROTECTED]> wrote: > > - Original Message - > From: "Tedit kap" > > Hi all, > Can someone refer me to good links or code, for creating a php bar chart > please? > Thanks. > > > > Hi Tedit, > What

Re: [php-list] Classes

2008-10-07 Thread listgroups08
- Original Message - From: listgroups08 Hi all, I am playing with classes for the first time and I am at a bit of a loss in php. How do I access the properties/functions of the parent class from sub function? And how do I register resources into the scope of the parent class? -

Re: [php-list] Classes

2008-10-07 Thread listgroups08
; And how do I register $handle into the global scope of Data_Base without > registering it into the global scope of PHP? > > ie - does var $server create a scope that is accessible in sub functions or > is it just in the root scope? > > Thanks, Robert. 20081007 1639 GMT-6 Im just sta

[php-list] Re: Classes

2008-10-07 Thread Filipe La Ruina
$handle = mysql_connect($server, $username, $password); > > } > > } > > > > How do I get $server etc from the root scope of Data_Base? > > > > And how do I register $handle into the global scope of Data_Base without > > registering it into the

Re: [php-list] Classes

2008-10-07 Thread Wade Smart
obal scope of Data_Base without > registering it into the global scope of PHP? > > ie - does var $server create a scope that is accessible in sub functions or > is it just in the root scope? > > Thanks, Robert. 20081007 1639 GMT-6 Im just starting with objects myself so this might not be right. But from the reading I was doing today, if you want the $handle you would do "return $handle" just like a normal function. Wade

[php-list] Classes

2008-10-07 Thread listgroups08
Hi all, I am playing with classes for the first time and I am at a bit of a loss in php. How do I access the properties/functions of the parent class from sub function? And how do I register resources into the scope of the parent class? For example if I have - class Data_Base { var