Visit Us
We are open only Mondays from 6pm-9pm as well as other times as noted on our calendar.
You can visit the shop at 200
S. Main St. Haysville, KS, 67060
View Larger Map
The Board
$sql = "
SELECT csma_users.id as member_id, first, last, office, email, phone, image
FROM csma_officer
JOIN csma_users
ON csma_officer.member = csma_users.id
WHERE dues_thru > CURDATE();
";
$result = $conn->query($sql);
if (!$result || $result->num_rows === 0) {
echo "No results";
} else {
$i=1;
echo '
'.PHP_EOL;
while ($OfficerList = $result->fetch_assoc()) {
$areaCode = substr($OfficerList['phone'], 0, 3);
$prefix = substr($OfficerList['phone'], 3, 3);
$lineNumber = substr($OfficerList['phone'], 6, 4);
$formattedPhone = "(" . $areaCode . ") " . $prefix . "-" . $lineNumber;
if($i>2){$i=1;}
if($i==1){echo '
'.PHP_EOL;}
echo '
'.PHP_EOL;
if($i==2){echo '
'.PHP_EOL;}
$i++;
}
echo '
';
}
require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/after.php';
?>