RE: [PHP] Cannot compile

2004-08-03 Thread Will Collins
Try running 'make clean' before you run 'make' again. I had a problem when trying to run 'make' for the umpteenth time during my recent troubles, and apparently it was because things got a little too cluttered, and this did the trick. Will -Original Message- From: Jason Wong [mailto:[EMA

RE: [PHP] Upgrade PHP? [SOLVED]

2004-08-02 Thread Will Collins
nday, August 02, 2004 10:14 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Upgrade PHP? On Tuesday 03 August 2004 07:42, Will Collins wrote: > Won't work: > > Fatal error: Call to undefined function: imagecreatefromjpeg() > ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-m

RE: [PHP] Upgrade PHP?

2004-08-02 Thread Will Collins
Won't work: Fatal error: Call to undefined function: imagecreatefromjpeg() -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 4:09 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Upgrade PHP? On Tuesday 03 August 2004 03:21, Will Collins

RE: [PHP] Upgrade PHP?

2004-08-02 Thread Will Collins
To test it, I used: ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-gd --with-zlib-dir=/usr/include -Original Message- From: bruce [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 3:39 PM To: 'Will Collins'; [EMAIL PROTECTED] Subject: RE: [PH

RE: [PHP] Upgrade PHP?

2004-08-02 Thread Will Collins
What now, guys? Will -Original Message- From: Support [mailto:[EMAIL PROTECTED] Sent: Sunday, August 01, 2004 10:11 PM To: Will Collins; [EMAIL PROTECTED] Subject: Re: [PHP] Upgrade PHP? I've dealt with a similar problem with Mandrake. Some distros have their own idea of where t

[PHP] Upgrade PHP?

2004-08-01 Thread Will Collins
I'm having problems upgrading PHP from 4.2.2 to 4.3.8 on RedHat 9. I've tried simply making the 4.3.8 from source, but RedHat didn't use the default PHP folder structure is seems, since there has been no change in my PHP version. I also tried the "./configure" string returned by 'phpinfo()' (assu

RE: [PHP] PHP error catching....

2004-07-20 Thread Will Collins
Error handlers? Plus, you can set up PHP to log errors to a file in 'php.ini'... -Original Message- From: Scott Fletcher [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 9:48 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP error catching What are those php functions that catch the

RE: [PHP] Problem of a beginner with Array

2004-07-20 Thread Will Collins
Name each of the checkboxes "grid[]" (Your Text), then in your processing script, $_POST['grid'] will be an array with the values of all the checked boxes (assuming at least one was checked - otherwise it won't be set). If you want a limit on the number of boxes you can check, try a little Javascr

RE: [PHP] textarea/display question...

2004-07-20 Thread Will Collins
I've always gotten errors when trying to use the "value" property of a textarea. Put the value info between the tabs. -Original Message- From: bruce [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 12:59 PM To: [EMAIL PROTECTED] Subject: [PHP] textarea/display question... hi.. i

RE: [PHP] Book Required

2004-07-17 Thread Will Collins
I apologize for requesting a read receipt. Won't happen again - I hope. :) -Original Message- From: Will Collins [mailto:[EMAIL PROTECTED] Sent: Saturday, July 17, 2004 2:27 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Book Required PHP & MySQL Web Development is a pretty good

RE: [PHP] Book Required

2004-07-17 Thread Will Collins
PHP & MySQL Web Development is a pretty good one. It does a good job of giving a fairly thorough explanation on things, considering the broad range of topics to be covered. I never have really been a fan of the "Fast and Easy... " series, or the "Learn * In 24 Hours" series. Will -Original

RE: [PHP] How to duplicate this functionality?

2004-05-14 Thread Will Collins
t when you up the "duration" and use it for totally different pages too... it's just really fun to play with. Just stick it into the header of your page. Will Collins -Original Message- From: Will Collins [mailto:[EMAIL PROTECTED] Sent: Friday, May 14, 2004 9:17 PM To: [EMA

RE: [PHP] How to duplicate this functionality?

2004-05-14 Thread Will Collins
It's fairly simple: at the top of your script, have a block of code similar to the following, and have the link point to -- $_SERVER['PHP_SELF']."?rm_id=".$id_to_be_deleted -- I'll leave out all but the essential elements. Will Collins -Original Mess