[PHP] persistient connections in FastCGI environment

2001-04-20 Thread Kevin Beckford
When using php as a FastCGI, do the database persistent connections work in the same way that they would under mod_php? Do they work at all? or are persistent connections only a feature under mod_php? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

[PHP] Serializing/unserializing objects

2001-03-26 Thread Kevin Beckford
What I want to do is to use an object to create a site.I plan on initiaizing the object on my page index.php, and just recycling index.php with different variables, so that I get different pages. Ideally, I want the object to read a site config file, so that I can modify the site config file f

Re: [PHP] Class methods in PHP

2001-02-24 Thread Kevin Beckford
, 2001 11:49 AM Subject: Re: [PHP] Class methods in PHP : On Saturday 24 February 2001 17:05, Kevin Beckford wrote: : > Is there class methods in php? : : Well, there are classes, classes can have methods, there are methods to : handle classes, methods to inspect methods, methods to inspect clas

Re: [PHP] DIsplaying page before script finnished

2001-02-24 Thread Kevin Beckford
try using flush() - Original Message - From: "David Tandberg-Johansen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, February 24, 2001 11:34 AM Subject: [PHP] DIsplaying page before script finnished : Hello! : : I wonder if there are any way to display the page before the s

[PHP] Class methods in PHP

2001-02-24 Thread Kevin Beckford
Is there class methods in php? -- 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]

[PHP] getting result set of a stored procedure

2001-02-24 Thread Kevin Beckford
I have been working with mysql for a while, and now I am working with Sybase ASE. I have some stored procedures that I can run, but I would like to know how to access the result set of such a call. In mysql, the result set is just another table, and I can fetch it as a hash or object to get what I

[PHP] file test

2001-02-23 Thread Kevin Beckford
I am opening the top level of a a directory structure with dir. I want make a list of the subdirectories, but not the files. Is there a file test operator like perl's -d in php? I will then have to go into the sub directories to perform actions on non directory files -- PHP General Mailing Li

[PHP] sessions and objects

2001-02-22 Thread Kevin Beckford
Hello all, I've been away from php for a while, ( and I'm glad to be back) Last time I checked in, sessioning was kinda working - especially the sessioning of objecs. Is this feature robust enough for production now? I want to do basic sessioning, and I don't have a lot of development time. Wh