RE: [PHP] If empty don't display...

2003-08-27 Thread Thijs Lensselink
Shouldn't it be if (empty($row9->prijs4pk)){ -Oorspronkelijk bericht- Van: Frank Keessen [mailto:[EMAIL PROTECTED] Verzonden: dinsdag 26 augustus 2003 22:14 Aan: [EMAIL PROTECTED] Onderwerp: [PHP] If empty don't display... Hi there, Can you please have a look at the following code: I'v

RE: [PHP] If empty don't display...

2003-08-27 Thread Jay Blanchard
[snip] 1. I'm trying not to display the fields that are empty with: if (!empty($row9->prijs4pk)){ But it's still display the line and there is no value in PRIJS4PK field. [/snip] You are testing to see if $row9->prijs4pk is NOT empty. If it is not empty you print it. You have not specified an act