I have a table that I got with web scraping I would like to modify it and give it my own design

0

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;
}
?>
    
asked by jarry 19.10.2018 в 19:27
source

0 answers