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