[PHP] textarea problem

2002-05-13 Thread Enrique Vadillo
Hi, I'm not sure if this is purely a PHP problem but here it goes: i have a form that sends text data to a PHP script, i have some textarea field which goes like this: TEXTAREA wrap=soft NAME=mynote ROWS=15 COLS=70/TEXTAREA everytime i POST this, $mynote is truncated to 1867 bytes, i have

[PHP] IE and '404 not found' custom script

2001-09-10 Thread Enrique Vadillo
Hi, I'd like to execute a php script which does *not always* display HTML everytime a file is not found. IE requires that a custom errmsg be over 512 bytes in order to display it instead of the internal one, my ErrorDocument script will look for any 'not found' file somewhere else (in blob

[PHP] execute a script on access to a directory

2001-09-07 Thread Enrique Vadillo
Hi, I would like to know how i can force a PHP script to be executed everytime a certain directory is accessed, for example in http://domain.com/go/getit the presence of the /go/ directory would force a PHP script to be executed prior to any operation. Do i need to play with rewriting urls in

Re: [PHP] execute a script on access to a directory

2001-09-07 Thread Enrique Vadillo
? Enrique- From: Jason Bell [EMAIL PROTECTED] To: Enrique Vadillo [EMAIL PROTECTED], PHP Users [EMAIL PROTECTED] Subject: Re: [PHP] execute a script on access to a directory Date: Fri, 7 Sep 2001 12:12:58 -0700 You could always add an include() for every page under the /go directory. Simplest way

[PHP] run a script for any HTTP request (was: run a script on access to a directory)

2001-09-07 Thread Enrique Vadillo
That was a fine idea Doug, but what if we push the subject and go a little further? I am thinking now that i'd like to make it possible that for ANY http request received by my Apache i'd like to have a php script executed first, i.e.: http://domain.com/ http://domain.com/anydir/anyfile for

Re: [PHP] Re: run a script for any HTTP request (was: run a script on access toa directory)

2001-09-07 Thread Enrique Vadillo
[EMAIL PROTECTED] To: Enrique Vadillo [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Subject: [PHP] Re: run a script for any HTTP request (was: run a script on access to a directory) Date: Fri, 7 Sep 2001 14:15:52 -0700 (PDT) What's wrong with rewriting urls? The other alternative is to make sure

Re: [PHP] Re: run a script for any HTTP request (was: run a script on access toa directory)

2001-09-07 Thread Enrique Vadillo
http request... duh this has to be easier for next PHP version! Thanks to everyone who *at least* tried to help. Enrique- From: Rasmus Lerdorf [EMAIL PROTECTED] To: Jason Bell [EMAIL PROTECTED] CC: Enrique Vadillo [EMAIL PROTECTED], [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: [PHP] Re