Re: [PHP] Class/functions question

2006-02-15 Thread Jochem Maas
Paul Goepfert wrote: Does anyone know where I can find the error log? I am using php on a http://www.google.com/search?q=where+is+apache+error+log webserver and the only log I found was a connection log in the logs dir on my webserver. something like: /var/log/apache/error_log

Re: [PHP] Class/functions question

2006-02-14 Thread Jochem Maas
Paul Goepfert wrote: I was able to get part of my page to load when I created the Validation class and put a call to the validation class within my table. When I did that the page loaded up until the php code to call the method and then it does not load the rest of the page.Can anyone help

Re: [PHP] Class/functions question

2006-02-14 Thread Paul Goepfert
Does anyone know where I can find the error log? I am using php on a webserver and the only log I found was a connection log in the logs dir on my webserver. Paul On 2/14/06, Jochem Maas [EMAIL PROTECTED] wrote: Paul Goepfert wrote: I was able to get part of my page to load when I created

Re: [PHP] Class/functions question

2006-02-13 Thread Paul Goepfert
I was able to get part of my page to load when I created the Validation class and put a call to the validation class within my table. When I did that the page loaded up until the php code to call the method and then it does not load the rest of the page.Can anyone help me with this? By the

Re: [PHP] Class/functions question

2006-02-12 Thread Chris Shiflett
Paul Goepfert wrote: I know how to call functlions, I just just don't know how to do it in PHP. Based on the rest of your question, I think you mean methods, not functlions. :-) If you're struggling with syntax, you should take one step at a time. Try this: ?php class myClass {

[PHP] Class/functions question

2006-02-11 Thread Paul Goepfert
Hi all, I building a website with PHP. I am going to be using functions to deal with vaildation. I am putting all the methods in a class called Validation. My problem is I do not know how to call the function. Well I shouldn't say that. I know how to call functlions, I just just don't know