tag $r = '

'; // loop through each field of the data foreach ($data as $key => $value) { // build a with a class of $key containing $value $r .= "{$value} "; } // close the

$r .= '

'; // output the html print $r; // return it too, just in case return $r; } }