Okay,
There aren't Sub Routines, just Functions?  I've been to the manual
recommended by Augusto *thank you*, that is helping!
I created a function called Foo with a single argument (and I set it up as
optional, that is way cool, I can't do that in ASP) ... and my question is:

I can call foo like this

echo foo(dog);        // outputs "This is a dog"
or like this
echo foo('dog');        // outputs "This is a dog"
or like this
echo foo("dog");        // outputs "This is a dog"

Does it matter which way I pass my arguments to foo?  All arguments were
passed as a string variable.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to