‘white_balls’ => array(’10’, ’23’, ’34’, ’45’, ’56’), // Five white ball numbers
‘powerball’ => ’12’ // The Powerball number
);// Output the numbers as HTML.
echo ”

Live Lottery Winning Numbers

“;
echo ”

Draw Date: ” . htmlspecialchars($data[‘draw_date’]) . ”

“;
echo ”

White Balls: ” . htmlspecialchars(implode(‘, ‘, $data[‘white_balls’])) . ”

“;
echo ”

Powerball: ” . htmlspecialchars($data[‘powerball’]) . ”

“;
?>