[PHP] Recursive Object Troubles

2003-08-25 Thread Joshua Groboski
pMenu->bAddMenu (&$m)) return true; } return false; } } //END Menu Class Should this work? Am I just doing something completely wrong? I know someone out there knows, please let me know if you have any ideas. I really appreciate any help I can get. Thanks in advance. -- Joshua Groboski Programmer Analyst SAVVIS Communications Inc. http://www.savvis.net

[PHP] Class extension problem

2003-08-06 Thread Joshua Groboski
" : " . $ws->prop1 . "\n"; ?> If you run this, you'll notice the constructor for CMS is never called. Is this a by-design functionality, am I wrong about what I think should happen, or am I just totally off my rocker? -- Joshua Groboski Programmer Analyst SAVVIS C

[PHP] Re: changing the name of a variable by another variable.

2003-07-23 Thread Joshua Groboski
Why don't you use an array? $variable[$i++]; -- Joshua Groboski Programmer Analyst SAVVIS Communications Inc. http://www.savvis.net "Tony Crockford" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I really am having a difficult day. > > I want to do a

[PHP] Re: references

2003-07-22 Thread Joshua Groboski
It is perfectly legal to pass the variable by reference from one function to another. You'll see that $tmp is 2 at the end of this script. Ofcourse, if you leave off the reference operators you'll end up with 0. "Carl Furst" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Ok let

[PHP] Re: mail()

2003-07-22 Thread Joshua Groboski
Why don't you send it to [EMAIL PROTECTED] I think as long as the $to address doesn't fail, you'll be alright. Josh "Javier" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, I need to send a reminder to all the users in my website. > To minimize bandwidth I would like to send ju

[PHP] Zend Studio - HTTP_POST_FILES

2003-07-22 Thread Joshua Groboski
re out how to simulate this. Any help is greatly appreciated. Joshua Groboski SAVVIS Communications Inc. http://www.savvis.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Anyone connect to a FileMaker DB?

2003-03-20 Thread Joshua Groboski
I know, FileMaker is not a real database. I have taken over some legacy systems and while I am redesigning the system, I need to be able to connect to a FileMaker DB. If you've done it, or know how I can do it, please let me know. Joshua Groboski Programmer Analyst / Webmaster S

Re: [PHP] Intermittent CGI Errors

2003-03-14 Thread Joshua Groboski
very well until you start to hit it hard. Then I get > JG> CGI Error > JG> The specified CGI application misbehaved by not returning a complete set of > JG> HTTP headers. The headers it did return are: > > JG> The output of my script is a header() redirect so it must be r

[PHP] Intermittent CGI Errors

2003-03-13 Thread Joshua Groboski
My app works very well until you start to hit it hard. Then I get CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are: The output of my script is a header() redirect so it must be returning a header right? Joshua