mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Turned > -> >
Added example git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@48750 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
077741678f
commit
2fe7f70489
1 changed files with 5 additions and 5 deletions
|
@ -43,15 +43,15 @@
|
|||
|
||||
// printing HTML result
|
||||
|
||||
print "<table>\n";
|
||||
print "<table>\n";
|
||||
while($line = mysql_fetch_array($result, MYSQL_){
|
||||
print "\t<tr>\n";
|
||||
print "\t<tr>\n";
|
||||
while(list($col_name, $col_value) = each($line)){
|
||||
print "\t\t<td>$col_value</td>\n";
|
||||
print "\t\t<td>$col_value</td>\n";
|
||||
}
|
||||
print "\t</tr>\n";
|
||||
print "\t</tr>\n";
|
||||
}
|
||||
print "</table>\n";
|
||||
print "</table>\n";
|
||||
|
||||
mysql_close($link);
|
||||
?>
|
||||
|
|
Loading…
Reference in a new issue