Re: [PHP] Help with Functions

2005-07-30 Thread Tom Chubb
Thanks guys for all your help. I've managed to get it working. I tried calling the function from within the file and it turned out that somehow I had messed up my include statement. I understood about adding argument variables to the syntax, but I needed to add a text argument as I couldn't think o

Re: [PHP] Help with Functions

2005-07-30 Thread Rory Browne
You're declaring your function wrong. You're doing: function (function_name) You should be doing function function_name($arg1, $arg2, $arg3) // with as many comma seperated arguments as you want. or if you donĀ“t want to pass any arguments function function_name() Try this out: function ma

Re: [PHP] Help with Functions

2005-07-30 Thread sub
I would recomend for sanity and clean code that you define your functions outside of the file you will be calling it from and include that file in any file you need to call a function from. Here's a function that I defined in my db.php file. /**

Re: [PHP] Help with functions()

2002-11-20 Thread Jason Sheets
You don't need the () around print. print testfunction($var1, $var2, $var3, $var4); Jason On Wed, 2002-11-20 at 17:48, Tracy Finifter Rotton wrote: > Try: > > $meat = testfunction ($var1, $var2, $var3, $var4); > echo $meat; > > > Or, alternatively, > > print (testfunction ($var1, $var2, $va

Re: [PHP] Help with functions()

2002-11-20 Thread Tracy Finifter Rotton
Try: $meat = testfunction ($var1, $var2, $var3, $var4); echo $meat; Or, alternatively, print (testfunction ($var1, $var2, $var3, $var4)); hope this helps. --t On 11/20/02 8:40 PM, "Beauford 2002" <[EMAIL PROTECTED]> wrote: > Hi, > > I have form that a user would input information and that

Re: [PHP] Help with functions()

2002-11-20 Thread Chris Hewitt
Beauford 2002 wrote: Hi, I have form that a user would input information and that info is sent to a function, but I need to be able to return a result of this function and is where I am having a problem. For example: testfunction($var1, $var2, $var3, $var4); //the form fills these values. e

Re: [PHP] Help with functions()

2002-11-19 Thread Leif K-Brooks
echo testfunction($var1, $var2, $var3, $var4); Or if you need to do something else with the value before echo()ing it: $meat = testfunction($var1, $var2, $var3, $var4); //Do something with $meat Beauford 2002 wrote: Hi, I have form that a user would input information and that info is sent to

Re: [PHP] Help with functions.

2002-02-28 Thread Greg Donald
> I need some help with functions. Does anyone know of a good place to learn > about functions? Will someone be willing to teach me what I need to know about > functions in PHP? Thank you, Here's a really simple example: \n"; // build up some more html $html .= "\$global_var + \$local_var + \$p