boolean error

From: "P(dot) Jourdan" <pippo(at)videotron(dot)ca>
To: pgsql-php(at)postgresql(dot)org
Subject: boolean error
Date: 2002-05-02 16:31:07
Message-ID: 5.1.0.14.2.20020502122037.00a6ef60@mail.host45.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

I am getting this in the error log file:
ERROR: Bad boolean external representation
'<font >color=red><b>YES></b></font>'

The code that is generating the message is all within the php delimiters
(entire file) and appears several times as follows:

if($r1==0 || $r2==0) {
if($archived=='Y') {
$archived="<font color=red><b>YES</b></font>";
}
;;;

select wares.ware_id,wares.name,category.name,unit_size,
qty_per_shipping_unit,supplier.name,sku,
case when wares.archived='t' then '<font color=red><b>YES</b></font>'
else wares.archived end as archived,
trademark.name
from wares,category,wares_category,supplier_wares,supplier,trademark
where wares.ware_id=wares_category.ware_id and
category.category_id=wares_category.category_id and
wares.ware_id=supplier_wares.ware_id and
supplier_wares.supplier_id=supplier.supplier_id and
wares.trademark_id=trademark.trademark_id";
I do not understand what is wrong? (This apparently worked fine in the
original online web site.)
Does anyone understand this?
Philip Jourdan

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Josh Berkus 2002-05-02 16:49:03 Re: type of a field
Previous Message Rod Taylor 2002-05-02 15:56:40 Re: [PHP] sql commands