Re: [PHP] PHP 4.1.0 Compiling on OS X

2001-12-12 Thread Weston Houghton
P.S. From my checking all php_dl functions are declared as returning voids... Wes > > Hey all, > > So I'm experimenting trying to get PHP 4.1 running under MacOS 10.1.1, > running the following for configure: > > ./configure --with-apxs2=/Volumes/ego/apache2/bin/apxs --enable-calendar > --e

[PHP] PHP 4.1.0 Compiling on OS X

2001-12-12 Thread Weston Houghton
Hey all, So I'm experimenting trying to get PHP 4.1 running under MacOS 10.1.1, running the following for configure: ./configure --with-apxs2=/Volumes/ego/apache2/bin/apxs --enable-calendar --enable-ftp --with-gd --enable-mailparse --with-mysql --enable-trans-sid Getting through configure ok,

Re: [PHP] Need PHP 4.0.3pl1

2001-12-12 Thread Rasmus Lerdorf
All source releases are tagged in CVS and can be checked out of cvs. See http://cvs.php.net and the cvs man page. As for a Windows binary, just build it from those sources. -Rasmus On Wed, 12 Dec 2001, Gaylen Fraley wrote: > This build is not on php.net. I need both the linux source and the

Re: [PHP] Re: Simple Question

2001-12-12 Thread J.F.Kishor
hello, I don't know how for I got your problem but, If you trying to print a string like this eg : print "This is Tom's book"; In the above case you need not use a back slash to escape the single quote coz' php accepts single quote's within a double quote. Otherwise you

[PHP] Logout problem

2001-12-12 Thread J.F.Kishor
hello all, I have designed a web page using php, as a security measure I have kept it password protected. I have used Apache authentication, using htpasswd file. Now I want to keep a logout in this web page, I tried to send a header request "http/1.0 401 Unauthorized" to force i

Re: [PHP] Single/Double Quotes

2001-12-12 Thread Konrad Riedel
Am Wed, 12.Dec 2001 um 10:22 schrieb Miles Thompson: > This should work ... > $result=mysql_query("SELECT book FROM TAB_AUTHORS WHERE aid = '$aid'"); > > When PHP sees the single quotes around the $aid it evaluates it to the > value stored in the variable. > Your first example connntained $aid

[PHP] PHP 4.1.0 is_dir bug

2001-12-12 Thread Alok K. Dhir
With PHP 4.1.0, all calls to is_dir which would have returned false now report a "stat failed" warning as a bonus. Using @is_dir to quiet it for the time being, but I'd imagine this is not the desired effect Alok K. Dhir -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

RE: [PHP] Searching for a new provider

2001-12-12 Thread R'twick Niceorgaw
Welcome abroad Indrea. But, their support is not the very best in industry. Lately I have seen some detoriation but usually my emails are answered in 1-2 days. Earlier I used to find them almost 24x7 on ICQ and AIM but haven't seen them on line for almost a month now. But all my emails are answer

RE: [PHP] Re: Simple Question

2001-12-12 Thread Martin Towell
it's just I would've gone ahead and tried one way to see if it gave me a parse error - but then again, I like doing things the hard way... :) -Original Message- From: Gaylen [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 4:05 PM To: Martin Towell; [EMAIL PROTECTED] Subject:

Re: [PHP] Re: Simple Question

2001-12-12 Thread Gaylen
RE: [PHP] Re: Simple QuestionTo be honest, the book PHP4 Developer's Guide by Blake Schwendiman has it listed as strip_slashes(). I just happened to be reading it when I saw the original message and copied it as it's listed in the index. So, rather than blaming him, I took the blame :). I th

RE: [PHP] Re: Simple Question

2001-12-12 Thread Martin Towell
you look at the docs or did you do it the trail-and-error way? -Original Message- From: Gaylen Fraley [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 3:22 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: Simple Question Nope. fatfingered :) stripslashes() is correct! -- G

[PHP] mail headers problem

2001-12-12 Thread Matthew Delmarter
I am using the HTML Email Class from Richard Heyes. Using the sendmail command I want to change the headers on the email so that the Return-Path is different from the To: data. The script looks like this: $mail->send( $row->firstname, $row->email, $newsletter_name,

Re: [PHP] Re: Simple Question

2001-12-12 Thread Gaylen Fraley
Nope. fatfingered :) stripslashes() is correct! -- Gaylen [EMAIL PROTECTED] Home http://www.gaylenandmargie.com PHP KISGB v2.6 Guest Book http://www.gaylenandmargie.com/phpwebsite "Martin Towell" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Gaylen is prob

Re: [PHP] Re: Simple Question

2001-12-12 Thread Rio Uniwaly
stripslashes() Rio :-) - Original Message - From: Tom Ray <[EMAIL PROTECTED]> To: Gaylen Fraley <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, December 13, 2001 11:10 AM Subject: Re: [PHP] Re: Simple Question > oh no, Iv'e gotten two answers... > > stripslashes() and str

RE: [PHP] Re: Simple Question

2001-12-12 Thread Martin Towell
Gaylen is prob right - I didn't check me syntax :( -Original Message- From: Tom Ray [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 3:11 PM To: Gaylen Fraley Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Re: Simple Question oh no, Iv'e gotten two answers... stripslashes() and s

Re: [PHP] Re: Simple Question

2001-12-12 Thread Tom Ray
oh no, Iv'e gotten two answers... stripslashes() and strip_slashes() which one? which one?! Gaylen Fraley wrote: >strip_slashes() > >-- >Gaylen >[EMAIL PROTECTED] >Home http://www.gaylenandmargie.com >PHP KISGB v2.6 Guest Book http://www.gaylenandmargie.com/phpwebsite > >"Tom Ray" <[EMAIL PRO

[PHP] Re: Simple Question

2001-12-12 Thread Gaylen Fraley
strip_slashes() -- Gaylen [EMAIL PROTECTED] Home http://www.gaylenandmargie.com PHP KISGB v2.6 Guest Book http://www.gaylenandmargie.com/phpwebsite "Tom Ray" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a quick question that I haven't been able to fi

RE: [PHP] Simple Question

2001-12-12 Thread Martin Towell
stripslashes() -Original Message- From: Tom Ray [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 13, 2001 2:47 PM To: [EMAIL PROTECTED] Subject: [PHP] Simple Question I have a quick question that I haven't been able to find the answer to yet. I've made a couple of guest books via PH

[PHP] Simple Question

2001-12-12 Thread Tom Ray
I have a quick question that I haven't been able to find the answer to yet. I've made a couple of guest books via PHP but the biggest problem I'm having is if any one inputs a ' or " or anything like that, the output in the book shows the stupid \ for the escape. So the word "Tom's" looks like

RE: [PHP] Another piece of history, kind of

2001-12-12 Thread Jack Dempsey
"but then again, as things look now, PHP 4.x isn't likely to happen within a foreseeable time range, if at all." its good be wrong sometimes :-) -Original Message- From: Andrei Zmievski [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 10:20 PM To: [EMAIL PROTECTED] Subject:

[PHP] Another piece of history, kind of

2001-12-12 Thread Andrei Zmievski
http://marc.theaimsgroup.com/?l=php-general&m=90719202212123&w=2 -Andrei -- 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] Need PHP 4.0.3pl1

2001-12-12 Thread Gaylen Fraley
This build is not on php.net. I need both the linux source and the windows binary for testing. Does anyone know where I can obtain these? -- Gaylen [EMAIL PROTECTED] Home http://www.gaylenandmargie.com PHP KISGB v2.6 Guest Book http://www.gaylenandmargie.com/phpwebsite -- PHP General Mailin

[PHP] Re: php 4.1.0 output compression

2001-12-12 Thread Yasuo Ohgaki
Rares Vasilescu wrote: > Anyone has tried out yet the output compression? > > How does it work, is it really stable? > > Rares > > Yes it is stable unless you delete output buffer with ob_end_clean()/flush(). How does it work? Read RFC for HTTP/1.1 -- Yasuo Ohgaki -- PHP General Mailin

[PHP] Re: PHP 4.1.0 and User-defined Sessions

2001-12-12 Thread Yasuo Ohgaki
Search bug database to see if the same problem is reported or not. If you get segfault, buld PHP with --enable-debug and get core file. If it is new, get backtrace as described in bugs.php.net. Submit new bug report. If you found multiple issues, submit bug report separately. There are more comm

Re: [PHP] Script like this for PHP

2001-12-12 Thread Indera
Hello, Thank you. I will check out the link you sent. Indera Nathan Cassano wrote: > While we are on the topic of Dynamic HTML, I'd like to recommend DynAPI > (http://dynapi.sourceforge.net/), a powerful cross-browser DHTML > library. You can do some awesome stuff with DynAPI. -- PHP Ge

Re: [PHP] Re: Script like this for PHP

2001-12-12 Thread Indera
Hi Dan, I will try your script. Thank you so much. Indera Dan McCullough wrote: > Heres a function I wrote some time back for an ecommerce site, works on the same >principle. > >