Skip to content

Instantly share code, notes, and snippets.

@noname007
Created March 25, 2015 08:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noname007/c7e9178b12112bcaf500 to your computer and use it in GitHub Desktop.
Save noname007/c7e9178b12112bcaf500 to your computer and use it in GitHub Desktop.
sql-table->html-table
<?
function render($rows)
{
$str = '<table border="1">';
foreach ($rows as $row) {
$str .='<tr>';
foreach ($row as $key => $value) {
$str .= '<td bgcolor="silver">'.$key.'</td><td>'.$value.'</td>';
}
$str .= '</tr>';
}
echo $str .='</table>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment