I'm trying to make a table and I need to have divider like at this site, i.e. the divider between rows must be slim and grey. I'm trying this code, but it doesn't work:
<table rules="rows">
<tbody>
<?php
foreach ($records as $record) {
if (isset($record['translate']))
{
echo '<tr>';
echo "<td width='500'>" . strip_tags($record['language_value']) . "</td>";
echo "<td width='200'>" . strip_tags($record['translate']) . "</td>";
echo '</tr>';
}
}
?>
</tbody>
</table>