[PHP] PHP Image : resolutions differs between platform

2004-02-08 Thread jun
not good at all. What happened? jun -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How to create an empty array

2003-02-27 Thread Jun
Use $category_list = array() instead. When you do $category_list[] = array(), you are creating an array of arrays. $category_list becomes an array with 1 element and this element is an empty array. So use $category_list = array(); "Michael Zornek" <[EMAIL PROTECTED]> wrote in message news:[EMAI

Re: [PHP] checking if module exists

2003-02-26 Thread Jun
thank you chris and marek.. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] checking if module exists

2003-02-26 Thread Jun
another please... not a good idea on production use. "Rick Emery" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Write a test script and run it on the target server. If it crashes, it's not enabled. > > - Original Message - > From: "Ju

[PHP] checking if module exists

2003-02-26 Thread Jun
I want my script to compress the output using gzip library. But before that, I want to check if gzip library is enabled before calling the compression functions... How do I do that? jun -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP not supporting method overloading.

2003-02-23 Thread Jun
Hi! I have a website whose pages are written in PHP.. using some classes I have made that extensively use method overloading.. Before, my webhosting company was using PHP 4.0.6 but just this january, they have upgraded to PHP 4.3.0... that is when I started to receive errors. My website is currentl