/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

  1. <?php include('header.php');
  2. $query = "SELECT * FROM board_positions";
  3. $result = mysql_query($query);
  4. ?>
  5. <div id="content_container" class="">
  6. <div id="main_content" class="fleft">
  7. <h2>LCMA Executive Board of Directors <?php echo year_range_output(); ?></h2>
  8. <ul class="content_list">
  9. <?php
  10. while ($row = mysql_fetch_array($result)){
  11. echo '<li>';
  12. if (strlen($row['link']) > 2){
  13. echo '<a href="' . $row['link'] . '">';
  14. }
  15. echo '<strong>' . $row['position'] . ': </strong>';
  16. if (strlen($row['link']) > 2){
  17. echo '</a>';
  18. }
  19. if (strlen($row['member_email']) > 2){
  20. echo '<a href="mailto:' . $row['member_email'] . '">';
  21. }
  22. echo $row['member'];
  23. if (strlen($row['member_email']) > 2){
  24. echo '</a>';
  25. }
  26. if (strlen($row['member2']) > 2){
  27. echo ' / ';
  28. if(strlen($row['member2_email']) > 2){
  29. echo '<a href="mailto:' . $row['member2_email'] . '">';
  30. }
  31. echo $row['member2'];
  32. if(strlen($row['member2_email']) > 2){
  33. echo '</a>';
  34. }
  35. echo '</li>';
  36. }
  37. }
  38. ?>
  39. <!-- <li><strong>President: </strong><a href="mailto:mail4kkoch(at)gmail.com">Kim Koch</a></li> -->
  40. <!-- <li><strong>President Elect: </strong><a href="mailto:leawinjum(at)gmail.com">Laura Winjum</a></li> -->
  41. <!-- <li><strong>Past President: </strong><a href="mailto:kswanson5(at)windstream.net">Kirsten Swanson</a></li> -->
  42. <!-- <li><strong>Treasurer: </strong><a href="mailto:ewilliams(at)neb.rr.com">K C Williams</a></li> -->
  43. <!-- <li><strong>Secretary: </strong>Rosalie Duffy--><!-- <a href="mailto:angelakorpas(at)gmail.com">Angela Korpas</a> </li> -->
  44. <!-- <li><strong>Parliamentarian: </strong><a href="mailto:stacytrapp(at)hotmail.com">Stacy Trapp</a></li> -->
  45. <!-- <li><strong><a href="foundation.php">Foundation</a> President:</strong>Liz V.</li> -->
  46. <!--<li><strong>Fundraising: </strong><a href="mailto:leawinjum(at)gmail.com">Laura Winjum</a></li>-->
  47. <!--
  48. <li><strong>Legislative: </strong>
  49. <ul>
  50. <li><strong>National: </strong><a href="mailto:cgregorius(at)inebraska.com">Carolyn Gregorius</a></li>
  51. <li><strong>State: </strong><a href="mailto:jodi.delozier(at)lcmaonline.org">Jodi Delozier</a></li>
  52. </ul>
  53. </li>
  54. -->
  55. <!-- <li><strong>Newsletter: </strong><a href="mailto:a.vw06(at)yahoo.com">Amy Vanderwoude</a></li> -->
  56. <!-- <li><strong><a href="membership.php">Membership</a>: </strong><a href="mailto: tessabhughes(at)hotmail.com">Tessa Hughes</a></li> -->
  57. <!-- <li><strong>Planning and Logistics: </strong><a href="mailto:pattigcnm(at)aol.com">Patti Gardner</a></li> -->
  58. <!-- <li><strong>Health Promotions: </strong><a href="mailto:breakniss(at)hotmail.com">Brea Kniss</a> -->
  59. <!--<a href="mailto:awoerth(at)gmail.com">Ann Woerth</a></li> -->
  60. <!-- <li><strong>TLC: </strong><a href="mailto:tnjex(at)neb.rr.com">Terri Jex</a></li> -->
  61. <!-- <li><strong>Fundraising: </strong><a href="mailto:ewilliams(at)neb.rr.com">K C Williams</a> / Shannon Cullan</li> -->
  62. <!--
  63. <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>
  64. <li><strong>Communications: </strong> Amy VanderWoude</li>
  65. -->
  66. </ul>
  67. </div>
  68. <!--
  69. <div id="right_sidebar" class="fleft">
  70. </div>
  71. -->
  72. </div>
  73. <?php include('footer.php'); ?>