close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Hide Empty Fields

Thread began 11/08/2012 4:44 am by SPT | Last modified 11/08/2012 6:37 am by Jason Byrnes | 718 views | 1 replies |

SPT

Hide Empty Fields

How do I hide a line if there is nothing in the database field?

Like this line:
<p> Description: <?php echo $row_WADAProperties["ShortDes"]; ?></p>

If there is nothing in the in the info field of the table can I hide the entire line?

Same goes for an image. If there is not an image can I hide the area that image would show?

<img src="PropsAdmin/images/<?php echo $row_WADAProperties['imageOne']; ?>" alt="<?php echo $row_WADAProperties['PicOneTitle']; ?>" width="227" height="198" class="Lefty PrettyPicSM" /><br />
<p> <?php echo $row_WADAProperties['PicOneTitle']; ?> </p>

I have tested some If statements but not working it out yet.

PS How do I surround code blocks on this forum?

Attached Files
DetailsPage.zip
Sign in to reply to this post

Jason ByrnesWebAssist

use an if statement with the != comparison. != means Not Equal:
if($row_WADAProperties["ShortDes"] != "") {....}

php:
<?php if($row_WADAProperties["ShortDes"] != "") { ?>

<p> Description: <?php echo $row_WADAProperties["ShortDes"]; ?></p>
<?php ?>




php:
<?php if($row_WADAProperties['imageOne'] != "") { ?>

<img  src="PropsAdmin/images/<?php echo $row_WADAProperties['imageOne']; ?>" alt="<?php echo $row_WADAProperties['PicOneTitle']; ?>" width="227" height="198" class="Lefty PrettyPicSM" /><br />
<p> <?php echo $row_WADAProperties['PicOneTitle']; ?> </p>
<?php ?>
Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...