Untitled
user_2917272
plain_text
3 years ago
286 B
7
Indexable
public function toHTML()
{
foreach ($this->rows as $row){
$row_len = count($row);
echo '<tr>';
foreach($row as $row_object){
echo "<td>$row_object</td>"
}
echo '</tr>';
}
}Editor is loading...