Re: [PHP] array's

2002-08-18 Thread Pafo
now it works, thx alot :) regards patrick "Jason Wong" <[EMAIL PROTECTED]> skrev i meddelandet [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Sunday 18 August 2002 12:25, Pafo wrote: > > anyone that can find the problem..? > > description below. > > > > > function PrintInfo() { > >for (

AW: [PHP] array's

2002-08-17 Thread robert mischke
> anyone that can find the problem..? > description below. > > > > debug > > > '***' OUTPUT > '**' > > class Relic { > > var $RelicName = Array(); > var $RelicType = Array(); > var $RelicRealm = Array(); > var

Re: [PHP] array's

2002-08-17 Thread Jason Wong
On Sunday 18 August 2002 12:25, Pafo wrote: > anyone that can find the problem..? > description below. > function PrintInfo() { >for ($this->i = 0; $this->i < count($this->RelicName); $this->i++) { >print "$this->RelicName[$this->i] : $this->RelicType[$this->i] : > $this->RelicRealm

[PHP] array's

2002-08-17 Thread Pafo
anyone that can find the problem..? description below. debug '***' OUTPUT '**' i = 0; $this->i < count($this->RelicName); $this->i++) { print "$this->RelicName[$this->i] : $this->RelicType[$this->i] : $this->RelicRe

[PHP] Array's

2001-10-28 Thread De Necker Henri
Please help! Im have been trying to get a multi-dimentional array for so time now and dont seems to get a right! I have the following : while($row=db_range()){ list($co_id,$surname,$init,$ba) = $row; $acid[$i] = array("$a"=>array("$co_id"), "$b"=>array("$sur

[PHP] Array's in classes

2001-08-23 Thread Scott Mebberson
Hi Guys, I have written a class in which it uses the global command to get the value of a variable from outside of this class which I use within the class. I have recently changed this variable to an array and added 5 extra keys to this array. It is a string indexed array. In now seems as though