Hello,

i want to extract data from html file, and than save to SQL Database use vb6
this my data in html file:

data.html
Code:
<html>
....
<table>
<tr><td>Product Name</td><td>Price</td><td>Qty.Sales</td></tr>
<tr>
<td>Shoes</td><td>200</td><td>5</td>
</tr>
<tr>
<td>Windows XP</td><td>300</td><td>4</td>
</tr>
</table>
....
</html>
and i want to get data, like this:

Code:
product name	price	qty.sales
---------------------------------
Shoes		200	5
Windows XP	300	4

anyone know how to do this ?

thank you