/board_of_directors.php
https://bitbucket.org/42dev/lcma-online · PHP · 75 lines · 73 code · 2 blank · 0 comment · 8 complexity · a273a29ae646a41414c8d59b67ed9967 MD5 · raw file
- <?php include('header.php');
- $query = "SELECT * FROM board_positions";
- $result = mysql_query($query);
- ?>
- <div id="content_container" class="">
- <div id="main_content" class="fleft">
- <h2>LCMA Executive Board of Directors <?php echo year_range_output(); ?></h2>
- <ul class="content_list">
- <?php
- while ($row = mysql_fetch_array($result)){
- echo '<li>';
- if (strlen($row['link']) > 2){
- echo '<a href="' . $row['link'] . '">';
- }
- echo '<strong>' . $row['position'] . ': </strong>';
- if (strlen($row['link']) > 2){
- echo '</a>';
- }
- if (strlen($row['member_email']) > 2){
- echo '<a href="mailto:' . $row['member_email'] . '">';
- }
- echo $row['member'];
- if (strlen($row['member_email']) > 2){
- echo '</a>';
- }
- if (strlen($row['member2']) > 2){
- echo ' / ';
- if(strlen($row['member2_email']) > 2){
- echo '<a href="mailto:' . $row['member2_email'] . '">';
- }
- echo $row['member2'];
- if(strlen($row['member2_email']) > 2){
- echo '</a>';
- }
- echo '</li>';
- }
- }
- ?>
- <!-- <li><strong>President: </strong><a href="mailto:mail4kkoch(at)gmail.com">Kim Koch</a></li> -->
- <!-- <li><strong>President Elect: </strong><a href="mailto:leawinjum(at)gmail.com">Laura Winjum</a></li> -->
- <!-- <li><strong>Past President: </strong><a href="mailto:kswanson5(at)windstream.net">Kirsten Swanson</a></li> -->
- <!-- <li><strong>Treasurer: </strong><a href="mailto:ewilliams(at)neb.rr.com">K C Williams</a></li> -->
- <!-- <li><strong>Secretary: </strong>Rosalie Duffy--><!-- <a href="mailto:angelakorpas(at)gmail.com">Angela Korpas</a> </li> -->
- <!-- <li><strong>Parliamentarian: </strong><a href="mailto:stacytrapp(at)hotmail.com">Stacy Trapp</a></li> -->
- <!-- <li><strong><a href="foundation.php">Foundation</a> President:</strong>Liz V.</li> -->
- <!--<li><strong>Fundraising: </strong><a href="mailto:leawinjum(at)gmail.com">Laura Winjum</a></li>-->
- <!--
- <li><strong>Legislative: </strong>
- <ul>
- <li><strong>National: </strong><a href="mailto:cgregorius(at)inebraska.com">Carolyn Gregorius</a></li>
- <li><strong>State: </strong><a href="mailto:jodi.delozier(at)lcmaonline.org">Jodi Delozier</a></li>
- </ul>
- </li>
- -->
- <!-- <li><strong>Newsletter: </strong><a href="mailto:a.vw06(at)yahoo.com">Amy Vanderwoude</a></li> -->
- <!-- <li><strong><a href="membership.php">Membership</a>: </strong><a href="mailto: tessabhughes(at)hotmail.com">Tessa Hughes</a></li> -->
- <!-- <li><strong>Planning and Logistics: </strong><a href="mailto:pattigcnm(at)aol.com">Patti Gardner</a></li> -->
- <!-- <li><strong>Health Promotions: </strong><a href="mailto:breakniss(at)hotmail.com">Brea Kniss</a> -->
- <!--<a href="mailto:awoerth(at)gmail.com">Ann Woerth</a></li> -->
- <!-- <li><strong>TLC: </strong><a href="mailto:tnjex(at)neb.rr.com">Terri Jex</a></li> -->
- <!-- <li><strong>Fundraising: </strong><a href="mailto:ewilliams(at)neb.rr.com">K C Williams</a> / Shannon Cullan</li> -->
- <!--
- <li><strong><a href="legislation.php">Legislation</a>: </strong><a href="mailto:jodi.delozier(at)lcmaonline.org">Jodi Delozier</a>, <a href="mailto:christie.dionisopoulos(at)lcmaonline.org">Christie Dionisopoulos</a></li>
- <li><strong>Communications: </strong> Amy VanderWoude</li>
- -->
- </ul>
- </div>
- <!--
- <div id="right_sidebar" class="fleft">
-
- </div>
- -->
- </div>
- <?php include('footer.php'); ?>