0
I’m in big trouble!
I have basically 1.5 million records including images in an HTML5 table (it already starts there, the browser does not render all images).
My idea was to convert this table to CSV, and so, play for a Mysql database, and then create a page display algorithm.
How can I perform this tag conversion <table>
, <tr>
, <td>
, some <a>
and also <img>
to an Excel file?
Is there any other alternative? Here’s an example of what a summary" is for each row of the table:
<tr>
<td class="">
<a href="#">Processo 2333382</a>
</td>
<td>
<a>
<img src="LINK DA IMAGEM">
</a>
</td>
<td>
<a>
<img src="LINK DA IMAGEM">
</a>
</td>
<td>
<a>
<img src="LINK DA IMAGEM">
</a>
</td>
</tr>
In short, I need to pass all image links with the process number to the database, or rather to a CSV file.
You want to switch to a CSV because you think it’s better or because you need to have a CSV?
– Sergio
It’s one of the ways I found to be able to send this table later to Mysql, but to have some form that already does it directly, it’s fair.
– Rafael Mota
I believe that using PHP for an Html5 parser would be the best option.
– danieltakeshi