[PHP] PHP-arnings

2001-10-31 Thread Harald Witt
Hi, I have a hopefully simple problem. Look at the following simple script: ?php if ($x) { echo $x; } ? This script runs properly on my productive system (Linux, Apache, PHP 4.0.3pl1). But on my Development-System (W2k Server, Apache 1.3.20, PHP 4.0.6) I always get a Warning, that

RE: [PHP] PHP-arnings

2001-10-31 Thread Kraa de Simon
if the + operator is used with strings. warn_plus_overloading = Off -Original Message- From: Harald Witt [mailto:[EMAIL PROTECTED]] Sent: woensdag 31 oktober 2001 15:18 To: [EMAIL PROTECTED] Subject: [PHP] PHP-arnings Hi, I have a hopefully simple problem. Look at the following simple

Re: [PHP] PHP-arnings

2001-10-31 Thread Frewuill Rodriguez
AM Subject: [PHP] PHP-arnings Hi, I have a hopefully simple problem. Look at the following simple script: ?php if ($x) { echo $x; } ? This script runs properly on my productive system (Linux, Apache, PHP 4.0.3pl1). But on my Development-System (W2k Server, Apache 1.3.20, PHP

Re: [PHP] PHP-arnings

2001-10-31 Thread nico_oreka
If defined ($x) ??? If !empty ($x) ??? ...Well ... - Original Message - From: Martín Marqués [EMAIL PROTECTED] To: Harald Witt [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, October 31, 2001 3:43 PM Subject: Re: [PHP] PHP-arnings On Mié 31 Oct 2001 11:17, you wrote: Hi