RE: [PHP-DB] Calling functions recursively: recursive PHP functions

2003-02-01 Thread Kevin Gordon
Thanks John. Your comment helped me through. I used a static variable for the array, array_merge_recursive() function to accumulate the foreign keys and $this-kgforeignkeys as a recursive function in a loop. This all works ok! function kgforeignkeys($tablename = ) {

Re: [PHP-DB] Calling functions recursively: recursive PHP functions

2003-01-26 Thread Kevin Gordon
Roberto Jason thank you for your comments. Please note the question at the end of this email. I searched on recursive PHP functions and found: [thelist] recursive PHP functions Rob Wilson thelist at lists.evolt.org Mon Sep 16 11:00:01 2002 * Previous message: [thelist] recursive PHP

RE: [PHP-DB] Calling functions recursively: recursive PHP functions

2003-01-26 Thread John W. Holmes
[snip] ?php function Test() { static $count = 0; $count++; echo $count; if ($count 10) { Test (); } $count--; } ? ** * Interesting but I am still lost as I need some help with

Re: [PHP-DB] Calling functions recursively

2003-01-25 Thread Roberto Plomp
not to use recursive functions, have never really seen the absolute necessity to do so. Roberto - Original Message - From: Jason Wong [EMAIL PROTECTED] Subject: Re: [PHP-DB] Calling functions recursively On Saturday 25 January 2003 14:49, Kevin Gordon wrote: Can functions / methods

Re: [PHP-DB] Calling functions recursively

2003-01-24 Thread Roberto Plomp
Kevin, Have fun and be sure to guarantee the prevent never ending looping. Roberto ?php function RecursiveFunction($aCounter) { if($aCounter = 10) { echo brCounting to ten: $aCounter\n; $aCounter++; RecursiveFunction($aCounter); } } ? - Original Message - From: Kevin