Re: [PHP] Got myself confused

2003-10-24 Thread Curt Zirzow
* Thus wrote Tom Wollaston ([EMAIL PROTECTED]): > > $null=getinfo('0'); > > for ($i=1; $i<=sizeof($null); $i++); > { > print_r($null); > /* print $nul[$i]['name']; . This wont print (even uncommented) it should be $null! > $j=$null[$i]['id']; . your sql statement doesn't fetch the 'id

[PHP] Got myself confused

2003-10-24 Thread Tom Wollaston
I have been trying to write some code for a simple menu system. The idea was that every item on a menu should be tied to anouther to give a menu structure. To do this I have tried to use the following code. Some of it I have added in to try and understand why its not really working. My first probl