Re: [PHP] passing second function through a function

2003-11-17 Thread CPT John W. Holmes
From: "David Otton" <[EMAIL PROTECTED]> > >From: "Ian Truelsen" <[EMAIL PROTECTED]> > > > >> What I want to do is to call a function from within a function, but pass > >> the secondary function name through the first function. Like this: > >> > >> function1(function2) > >> > >> Then call function2

Re: [PHP] passing second function through a function

2003-11-17 Thread David Otton
On Mon, 17 Nov 2003 11:04:47 -0800, you wrote: >What I want to do is to call a function from within a function, but pass >the secondary function name through the first function. Like this: > >function1(function2) > >Then call function2 from within function1. Unfortunately, I have been >unable to f

Re: [PHP] passing second function through a function

2003-11-17 Thread CPT John W. Holmes
From: "Ian Truelsen" <[EMAIL PROTECTED]> > What I want to do is to call a function from within a function, but pass > the secondary function name through the first function. Like this: > > function1(function2) > > Then call function2 from within function1. Unfortunately, I have been > unable to

[PHP] passing second function through a function

2003-11-17 Thread Ian Truelsen
What I want to do is to call a function from within a function, but pass the secondary function name through the first function. Like this: function1(function2) Then call function2 from within function1. Unfortunately, I have been unable to figure out the proper syntax for calling the second func