[PHP] Listserv

2001-08-28 Thread Phil Spitler
Does anyone know of a good listserv written in PHP? Thanks! - Phil Spitler [Vice President] Web Hut Design, Inc. c 704-451-1324 mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] image help please

2001-08-01 Thread Phil Spitler
, 0, 0, 0, 0, 320, 240); imagejpeg($im2,,100); imagedestroy($im); imagedestroy($im2); ? THANKS! - Phil Spitler [Vice President] Web Hut Design, Inc. c 704-451-1324 mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

RE: [PHP] image help please

2001-08-01 Thread Phil Spitler
Nevermind, I figured it out. I needed to create image 2 with ImageCreateTrueColor() -Original Message- From: Phil Spitler [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 1:41 PM To: PHP Subject: [PHP] image help please Can anyone see why this blows up? It basically

[PHP] error trapping

2001-07-27 Thread Phil Spitler
I am wondering the best way to handle error trapping with PHP. I am farmiliar with languages, ColdFusion being one, that you can use TRY and CATCH statements. Any info would be appreciated. THANKS! - Phil Spitler [Vice President] Web Hut Design, Inc. c 704-451-1324

RE: [PHP] read filenames from dir

2001-07-26 Thread Phil Spitler
This should do it for you. ? $path = THE DIRECTORY YOU WISH TO LIST THE FILES FROM; $d = dir($path); while ($entry=$d-read()) { if ((!is_dir($path.$entry)) AND ($entry !== .) AND ($entry !== ..)){ echo a href='$entry'$entry/abr\n; } } $d-close(); ? - Phil

[PHP] error trapping

2001-07-26 Thread Phil Spitler
I am wondering the best way to handle error trapping with PHP. I am farmiliar with languages, ColdFusion being one, that you can use TRY and CATCH statements. Any info would be appreciated. THANKS! - Phil Spitler [Vice President] Web Hut Design, Inc. c 704-451-1324

[PHP] php3 extension

2001-07-24 Thread Phil Spitler
Can anyone tell me how to turn on .php3 extensions in PHP on Win2000? I've looked in the php.ini file and can't seem to find it. Thanks! Phil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

[PHP] CGI error

2001-07-24 Thread Phil Spitler
I am running PHP in CGI mode on win2k. I keep getting an error when I try to load a PHP page. I have 2 other servers set up exactly the same that work just fine. Does anyone know what this could be? CGI Error The specified CGI application misbehaved by not returning a complete set of HTTP

RE: [PHP] CGI error

2001-07-24 Thread Phil Spitler
until checking Check that file exists in the App Mappings. This fixed the problem after HOURS of troubleshooting. Phil -Original Message- From: Phil Spitler [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 3:06 PM To: [EMAIL PROTECTED] Subject: [PHP] CGI error I am running

RE: [PHP] CGI error

2001-07-24 Thread Phil Spitler
. Phil -Original Message- From: Phil Driscoll [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 24, 2001 4:06 PM To: Phil Spitler; [EMAIL PROTECTED] Subject: Re: [PHP] CGI error On Tuesday 24 July 2001 20:44, Phil Spitler wrote: There must be some sort of bug with IIS and PHP

RE: [PHP] a good PHP editor

2001-07-18 Thread Phil Spitler
I like ultraedit32 http://www.ultraedit.com Although it isn't free, the price is reasonable. - Phil Spitler [Vice President] Web Hut Design, Inc. c 704-451-1324 mailto:[EMAIL PROTECTED] -Original Message- From: doug [mailto:[EMAIL PROTECTED]] Sent

[PHP] Time Taken to Process

2001-07-16 Thread Phil Spitler
Does anyone know an easy way to tell how long a page takes to run in ms. Maybe some variable that can be called at the bottom of the page or something. THANKS! - Phil Spitler [Applications Developer] American City Business Journals p: 704.973.1049 f

[PHP] RE: Time Taken to Process

2001-07-16 Thread Phil Spitler
yeah, I just saw that, thanks! :) Phil -Original Message- From: Philip Hallstrom [mailto:[EMAIL PROTECTED]] Sent: Monday, July 16, 2001 2:12 PM To: Phil Spitler Cc: [EMAIL PROTECTED] Subject: Re: Time Taken to Process Look at the recent subject entitled echo vs printf. There's