From 543378166ef91badf5ab7a6e1bfa35cd07f4790f Mon Sep 17 00:00:00 2001 From: Seth Meranda <smeranda2@unl.edu> Date: Wed, 4 Nov 2009 15:42:53 +0000 Subject: [PATCH] Randomized the featured huskers on the bottom right. --- .../views/default/customindex/content.php | 35 ++++++++----------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/customindex/views/default/customindex/content.php b/customindex/views/default/customindex/content.php index 9bf77b5c..fa658379 100644 --- a/customindex/views/default/customindex/content.php +++ b/customindex/views/default/customindex/content.php @@ -381,34 +381,29 @@ </div> <div class="col right"> <h3 class="sec_main">Featured Huskers</h3> + <?php + $result = mysql_query("SELECT TRIM(firstName) as firstName, TRIM(lastName) as lastName, `title`, `location`, `shortText` FROM `huskerInfo` WHERE `Active` = 1 ORDER BY RAND() LIMIT 0,2;"); + + while($row = mysql_fetch_array( $result )) + { + ?> <div class="zenbox"> <div style="float:left;margin:0px 5px 5px 0px;"> - <img src="mod/customindex/witw_icons/Betsy_O'Brien_medium.jpg" alt="Betsy O'Brien" style="width:60px;height:60px;" /> - </div> - <div style="float:left ;width:140px;"> - <span class="name">Betsy O'Brien</span><br /> - <span class="title">Retired Dept. of Energy Division Director</span><br /> - <span class="location">USA - Washington, D.C.</span> - </div> - <div class="clear"> - Betsy O'Brien, '67, made a career of quantifying future energy sources and costs.<br /> - <a href="featured/husker/Betsy_O'Brien/">Continue Reading...</a> - </div> - </div> - <div class="zenbox"> - <div style="float:left;margin:0px 5px 5px 0px;"> - <img src="mod/customindex/witw_icons/Bob_Thacker_medium.jpg" alt="Bob Thacker" style="width:60px;height:60px;" /> + <img src="mod/customindex/witw_icons/<?php echo $row['firstName']."_".$row['lastName']?>_medium.jpg" alt="<?php echo $row['firstName']." ".$row['lastName']?>" style="width:60px;height:60px;" /> </div> <div style="float:left ;width:140px;"> - <span class="name">Bob Thacker</span><br /> - <span class="title">Vice President for Marketing and Advertising</span><br /> - <span class="location">USA - Chicago, IL</span> + <span class="name"><?php echo $row['firstName']." ".$row['lastName']?></span><br /> + <span class="title"><?php echo $row['title']?></span><br /> + <span class="location"><?php echo $row['location']?></span> </div> <div class="clear"> - Bob Thacker ('70) is a legendary retail marketer whose secret is "Look before you leap - but leap!"<br /> - <a href="featured/husker/Bob_Thacker/">Continue Reading...</a> + <?php echo $row['shortText']?><br /> + <a href="featured/husker/<?php echo $row['firstName']."_".$row['lastName']?>/">Continue Reading...</a> </div> </div> + <?php + } + ?> <a href="featured/" title="See all the featured Huskers">See all the featured Huskers...</a> </div> </div> -- GitLab