I have a table that I got with web scraping I would like to modify it and give it my own design
<?php
$codigo = ($_GET['codigo']);
$codigo2 = (string) $codigo;
$link = "http://www2.deltron.com.pe/modulos/productos/items/postsql.php?item_number=";
$link2 = $link . $codigo2;
require 'php/libs/simple_html_dom.php';
$html = new simple_html_dom();
$html->load_file($link2);
$titles = $html->find('tr#STOCK_TR,table.cuerpo');
foreach ($titles as $titles) {
echo $titles->innertext;
}
?>