Untitled

 avatar
user_2917272
plain_text
3 years ago
286 B
4
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...