[PHP] Why don't webhosts upgrade to PHP5 ?

2005-12-07 Thread Pugi!
My webhost doesn't want to upgrade to PHP5 because of security reasons and some scripts that will mallfunction. I find it hard to believe. Current conf of webhost is PHP 4.3.11, Apache 1.3.33 and MySQL 3.23.49. What real reasons could there be not to upgrade ? How could I convince them to upgrade

Re: [PHP] Why don't webhosts upgrade to PHP5 ?

2005-12-07 Thread Andy Pieters
On Wednesday 07 December 2005 08:37, Pugi! wrote: My webhost doesn't want to upgrade to PHP5 because of security reasons and some scripts that will mallfunction. I find it hard to believe. Current conf of webhost is PHP 4.3.11, Apache 1.3.33 and MySQL 3.23.49. What real reasons could there be

Re: [PHP] Why don't webhosts upgrade to PHP5 ?

2005-12-07 Thread Jochem Maas
Andy Pieters wrote: On Wednesday 07 December 2005 08:37, Pugi! wrote: My webhost doesn't want to upgrade to PHP5 because of security reasons and some scripts that will mallfunction. I find it hard to believe. Current upgrade to php5 == scripts that will mallfunction == support calls ==

[PHP] Why don't my PHP variables get posted?

2002-08-15 Thread DonPro
Hi, I have a small form with checkbox objects. Below is the code: form method=POST action=doc_complete.html input type=checkbox name=b13 value=checked font size=3Export Declaration (B13)/fontbr input type=checkbox name=\cinvoice\ value=checked font size=3Commercial Invoice/font p align=left

Re: [PHP] Why don't ...

2001-12-17 Thread Yoel Benitez Fonseca
H! Thank you, but yuor fragment of code read all file and I'm really want is read an integer from the file. There are some fuction of PHP thas serve me to make that? Rasmus Lerdorf said: Is your second character perhaps a 0? That while loop is going to end as soon as it gets a character

[PHP] Why don't ...

2001-12-16 Thread Yoel Benitez Fonseca
Hi! The following code fragment tries to read a sequence of digits from a file but it doesn't work, only the first character is read, Which is my error?. $str = ; while( ($c = fgetc($this-m_file)) ereg([0-9], $c) ){ $str .= $c; } Thank you in

Re: [PHP] Why don't ...

2001-12-16 Thread Michael Sims
At 09:14 AM 12/16/2001 -0500, Yoel Benitez Fonseca wrote: Hi! The following code fragment tries to read a sequence of digits from a file but it doesn't work, only the first character is read, Which is my error?. $str = ; while( ($c = fgetc($this-m_file)) ereg([0-9],

Re: [PHP] Why don't ...

2001-12-16 Thread Rasmus Lerdorf
Is your second character perhaps a 0? That while loop is going to end as soon as it gets a character that evaluates to 0. Write it like this instead: while(!feof($this-m_file)) { $c = fgetc($this-m_file); if(is_numeric($c)) $str .= $c; } -Rasmus On Sun, 16 Dec 2001, Yoel Benitez