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