[PHP] PHP installation with MySQL Support

2002-10-25 Thread MET
Where should you point the command --with-mysql to. The binary, header files, what? Currently I have MySQL installed at /usr/lib/mysql/. And this is a RedHat Linux 8.0. Suggestions? ~ Matthew -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.p

RE: [PHP] PHP or Apache problem?

2002-09-12 Thread MET
The detailed answer, I have no idea. The simple answer, currently there compatibility is NOT stable, but will be soon ~ Matthew -Original Message- From: Aaron Gould [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 9:35 AM To: PHP-GENERAL Subject: [PHP] PHP or Apache proble

RE: [PHP] is php-4.2.3 a stable version?

2002-09-11 Thread MET
PHP 4.2.3 is mainly fixes to 4.2.2 but yes it is stable and a suggested update. ~ Matthew -Original Message- From: Anil Garg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 2:46 PM To: [EMAIL PROTECTED] Subject: [PHP] is php-4.2.3 a stable version? Hi, i am using freeb

RE: [PHP] is php4.2 supported on freebsd-4.2

2002-09-11 Thread MET
I'm guessing that pages requiring passing data isn't working correctly right? If so here's what you do. cd php-4.2.2 ./configure (whatever options you want here) make && make install && make clean (add the appropriate lines to your httpd.conf file, the ones you have from 4.1.2 should be

RE: [PHP] Apache compile

2002-09-10 Thread MET
Did you delete the config.cache file in the PHP directory after the first "configure, make, make install, and make clean" commands? Did you add the appropriate info into apache's httpd.conf file so that is knows what .php files are and what to parse them with? Did you add the appropriate command

RE: [PHP] Re: Passing variables between servers

2002-08-21 Thread MET
http://www.w3.org/TR/SOAP/ ~ Matthew -Original Message- From: Mark McCulligh [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 4:14 PM To: Jay Blanchard Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Re: Passing variables between servers I have thought about this also, but I need

RE: [PHP] copy a string

2002-08-21 Thread MET
You want to copy a string to do what with it? This answer to this would help all of us help you. ~ Matthew -Original Message- From: Oskar Hermansson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 11:32 AM To: [EMAIL PROTECTED] Subject: [PHP] copy a string Hello! Is ther

RE: [PHP] suggestions for a good php+mysql isp?

2002-08-20 Thread MET
http://www.futurequest.com Fantastic!! ~ Matthew -Original Message- From: db, or not db [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 11:01 AM To: [EMAIL PROTECTED] Subject: [PHP] suggestions for a good php+mysql isp? I have searched the archives and the last time this wa

RE: [PHP] variables not behaving as expected

2002-08-19 Thread MET
Read this. http://www.php.net/release_4_2_0.php ~ Matthew -Original Message- From: ROBERT MCPEAK [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 1:59 PM To: [EMAIL PROTECTED] Subject: [PHP] variables not behaving as expected We've recently upgraded to PHP version 4.2

RE: [PHP] FUNCTIONS

2002-08-19 Thread MET
In the top of the loop, before you set the variables from the database do this. unset($variable); OR $variable = ""; Either will do. ~ Matthew -Original Message- From: Georgie Casey [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 10:30 AM To: [EMAIL

RE: [PHP] hyperlink parser - a bit new view :)

2002-08-18 Thread MET
Look up Regular Expressions. Basically they allow you to search out matches in strings such as and any variable amount of letters between the open and closed tags. So you'd need to read in the entire file into a string, chop out all the pesky page returns ('\n') and then run your function using

RE: [PHP] Web Based Mail

2002-08-18 Thread MET
IMP and SquirrelMail both do the job for me. IMP = http://www.horde.org/imp/ SquirrelMail = http://www.squirrelmail.org/ ~ Matthew -Original Message- From: Chill [mailto:[EMAIL PROTECTED]] Sent: Sunday, August 18, 2002 2:35 PM To: [EMAIL PROTECTED] Subject: [PHP] W

[PHP] Extending PHP 4.0

2002-08-16 Thread MET
Does anyone know how to build the first_module example shown at Zend (http://www.zend.com/apidoc/) ? I'd like to start coding extensions (preferably not directly into the PHP binary because of my hosting situation) but I just don't understand the explanation of compiling them. Any one know how?

[PHP] PHP 4.2.2 and Apache 2

2002-08-13 Thread MET
So how stable are they? I'm not running a production server, but a development server. Everything coming off of this box goes directly to a production server. ~ Matthew /** Matthew Metnetsky [EMAIL PROTECTED]

[PHP] Compiling External Modules

2002-08-12 Thread MET
Does anyone know how to build the first_module example shown at Zend (http://www.zend.com/apidoc/) ? I'd like to start coding extensions (preferably not directly into the PHP binary because of my hosting situation) but just don't understand the explanation of compiling them. Any one know how? ~