I have a big problem!
I have basically 1 million and a half records including images in an HTML5 table (it starts right there, the browser does not render all the images).
My idea was to convert this table to CSV, and thus play to a MySQL database, and then create a display page algorithm.
How can I perform this conversion, from <table>
, <tr>
, <td>
, some <a>
and also <img>
to an Excel file?
Is there any other alternative? Here is an example of how a "summary" of each table row is:
<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.