[PHP] Re: function not returning TRUE

2002-02-12 Thread Bart Veldhuizen
Hi Nick, did you double-check your query ($qry)? Run it from the mysql client or from phpMyAdmin to make sure its returning some rows of data. Cheers, Bart Nick Wilson wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi all > Can anyone see any reason why this function does not

Re: [PHP] stripping white space?

2001-07-10 Thread Bart Veldhuizen
Hi Remo, > PS: Can anyone enlighten me concerning HTTP compression? I wish I could remember where I read this, but the PHP documentation still does not have this feature described. To enable zlib output compression, first make sure you have compiled PHP with the --with-zlib option. Next, add the

Re: [PHP] stripping white space?

2001-07-10 Thread Bart Veldhuizen
es (mod_rewrite, php and postrges). > It is easy to access but might be hard to combine the URL together. > > But you're right, on UNIX systems, if I am not wrong, you cannot hold more > then 1024 (?) files in a single directory. > So subfolders is the way to go. > > Cheers

Re: [PHP] stripping white space?

2001-07-10 Thread Bart Veldhuizen
Hi Maxim, > 1. HTTP compression, which is not 100% compatible, but catches most > of the browsers anyway. Yes. The standard PHP implementation actually inspects the HTTP headers to determine if the browser supports gzip encoding. If not, it will send the files uncompressed. Looking at our websit

Re: [PHP] stripping white space?

2001-07-09 Thread Bart Veldhuizen
Hi Brian, >* Persuade someone at Zend to modify PHP so that a filter function can > be specified which all output text is passed through - would have the > same restrictions as the "header" function You can already achieve this by using the built-in output buffering function. Read