Printing HTML table rows with implode() : implode « Data Structure « PHP
- PHP
- Data Structure
- implode
Printing HTML table rows with implode()
<?
$dimsum = array('A','B','C');
print '<tr><td>' . implode('</td><td>',$dimsum) . '</td></tr>';
?>
Related examples in the same category