> -Original Message-
> From: Pablo Oliva [mailto:[EMAIL PROTECTED]]
> Sent: 01 October 2002 08:11
> To: [EMAIL PROTECTED]
> Subject: [PHP] conditional statement problems
>
>
> $title_err = ($adTitle == "") ? 1 : strlen($adTitle) > 50 ? 2 : 0;
&g
René Moonen wrote:
> Pablo Oliva wrote:
>
>> $title_err = ($adTitle == "") ? 1 : strlen($adTitle) > 50 ? 2 : 0;
>>
>> Can anyone tell me why this is not evaluating correctly (returning a
>> value of 1) when $adTitle is an empty string?
>>
>>
>>
>>
> I have no idea... but if you change your code
Pablo Oliva wrote:
>$title_err = ($adTitle == "") ? 1 : strlen($adTitle) > 50 ? 2 : 0;
>
>Can anyone tell me why this is not evaluating correctly (returning a
>value of 1) when $adTitle is an empty string?
>
>
>
>
I have no idea... but if you change your code to this, it works:
$title_err = ($
Hi,
Tuesday, October 1, 2002, 5:11:08 PM, you wrote:
PO> $title_err = ($adTitle == "") ? 1 : strlen($adTitle) > 50 ? 2 : 0;
PO> Can anyone tell me why this is not evaluating correctly (returning a
PO> value of 1) when $adTitle is an empty string?
It is right according to your expression, try
$title_err = ($adTitle == "") ? 1 : strlen($adTitle) > 50 ? 2 : 0;
Can anyone tell me why this is not evaluating correctly (returning a
value of 1) when $adTitle is an empty string?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
5 matches
Mail list logo