Hive Global Leaders June 2017
If you haven’t yet submitted your bio and would like to, you can submit your bio here
get_results( “SELECT * FROM wp_hiveglp.hive_alumni WHERE class=’june2017′ ORDER BY fname”, ARRAY_A );
foreach ($participants as $participant) {
//this makes sure there are not html injection issues, and it fixes all of the special characters
$html = array_map(function ($e) { return htmlentities($e, ENT_NOQUOTES, ‘UTF-8’);}, $participant);
$city = $html[‘city’];
$state = $html[‘state’];
$country = $html[‘country’];
$title = $html[‘title’];
$organization = $html[‘organization’];
echo “
“; echo ““; echo “ |
“; echo “ {$html[‘fname’]} {$html[‘lname’]}“; {$html[‘title’]}, {$html[‘organization’]}“; ” . $city . “, ” . $state . “, ” . $country . ““; ” . $city . “, ” . $country . ““; {$html[’email’]}“; {$html[‘bio’]} “; |
“;
}
?>