Hive Global Leaders Program March 2014
get_results( “SELECT * FROM hive_alumni WHERE class=’mar2014′ ORDER BY fname ASC”, 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);
echo “
echo ““;
echo “
{$html[‘fname’]} {$html[‘lname’]}
“;
echo “
{$html[‘organization’]}
“;
echo “
{$html[’email’]}
“;
echo “
{$html[‘bio’]}
“;
echo “
What is the change you want to bring to the world?
“;
echo “
{$html[‘what_is_the_change_you_want’]}
“;
echo “
What can you support your fellow Global Leaders with?
“;
echo “
{$html[‘what_can_other_leaders_help_you_with’]}
“;
echo “
How can your fellow Global Leaders support you?
“;
echo “
{$html[‘how_can_you_help_other_leaders’]}
“;
echo “
“;
}
?>