Current location: Hot Scripts Forums » General Community » Script Requests » Remove an empty div tag?


Remove an empty div tag?

Reply
  #1 (permalink)  
Old 05-01-10, 09:12 AM
Abrica Abrica is offline
Newbie Coder
 
Join Date: Feb 2010
Posts: 40
Thanks: 4
Thanked 0 Times in 0 Posts
Remove an empty div tag?

Hi,
I have a div tag which echos text from a mySQL database, the div has a red background (in the CSS) the problem is, when there is not text in the databse, it still shows an empty red background.
The CSS for the div is:
Code:
#alertnews {color:#C00;font-weight:bold;font-size:16px;background-color:#FFCECE;padding-left:3px;padding-top:3px;padding-right:3px;padding-bottom:3px}
and the tag is like this:
PHP Code:

<div id="alertnews">

          <? while ($row_settings mysql_fetch_array($rs_settings)) {?>
          <? echo $row_settings['alertnews']; ?>
          <? ?>
        </div>
Anyone know code that will remove the div if its empty?

Thanks a lot!
Reply With Quote
  #2 (permalink)  
Old 05-04-10, 12:02 AM
DanielVS DanielVS is offline
New Member
 
Join Date: Jan 2010
Location: Vancouver, BC, Canada
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
How about this:

Code:
<? if (mysql_num_rows($rs_settings)) { ?>
   <div id="alertnews">
      <? while ($row_settings = mysql_fetch_array($rs_settings)) {?>
         <? echo $row_settings['alertnews']; ?>
      <? } ?>
   </div>
<? } ?>
Reply With Quote
Reply

Bookmarks

Tags
css, div, php


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
AP Div or DIV Tag or something else? Ristick CSS 1 03-10-09 07:30 AM
Can't Understand java script maverickminds JavaScript 1 07-16-06 01:23 PM
Declared Functions skipper23 PHP 4 12-17-03 10:06 AM
index page not showing up skipper23 PHP 3 12-15-03 01:10 PM
Help me guys Mister B. ASP 1 09-09-03 09:12 PM


All times are GMT -5. The time now is 10:03 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.