"; echo "State boards are requiring continuing education credits to maintain professional engineer licenses. Currently there are thirty-one (31) states that have specific requirements. For each of the states requiring continuing education credits for professional engineer license renewal, information is provided for each of the state board's specific requirements.

Select a state to view that state board's requirements for professional engineer licensure renewals. "; echo "

"; if ((isset($HTTP_POST_VARS["states"])) && ($HTTP_POST_VARS["states"] == "go")) { // the form has been submitted $state= $HTTP_POST_VARS['state']; include_once("connection.php"); include_once("form.html"); $querySQL = sprintf("SELECT * from state_pdh where state = '$state'"); mysql_select_db($database_connection, $connection); $queryResult = mysql_query($querySQL, $connection) or die(mysql_error()); $row = mysql_fetch_array( $queryResult ); $state = $row['state']; $requirements = $row['pdh_requirements']; $renewal = $row['renewal_dates']; $carryover = $row['pdh_carryover']; $record = $row['record_keeping']; $contact = $row['state_board_contact']; include "listing.php" ; } // if isset else{ //show the form include_once("form.html"); }//else echo "

"; require_once ("http://bookstore.ashrae.biz/footer.php"); ?>