aaaaah! xD, disculpa, la variable $db contiene:
Código PHP:
Ver original<h1>TITULO1</h1>
<table>
<tr>
<th>Imagen 1</th>
<th>Nombre/Imagen Mini/Descripcion</th>
<th>Datos 1</th>
<th>Datos 2</th>
<th>Datos 3</th>
</tr>
<tr>
<td><img src="imagen.png"></td>
<td>
<a href="#" class="notdone">Este es el nombre</a><img src="imagen.png"><br>
Forgotten Scroll to learn Arrow Rain. Moonlight Sentinel uses it. Can be acquired by level 83.
</td>
<td class="center">-</td>
<td class="center">-</td>
<td class="center">-</td>
</tr>
</table>
<h1>TITULO 2</h1>
<table>
<tr>
<th>Imagen 1</th>
<th>Imagen 2</th>
<th>Nombre/ImagenMini/Descripcion</th>
<th>Datos 1</th>
<th>Datos 2</th>
<th>Datos 3</th>
<th>Imagenes 1</th>
<th>Imagenes 2</th>
<th>Imagenes 3</th>
<th>Imagenes 3</th>
</tr>
<tr>
<td>
<a href="#">
<img src="img/maps.png">
</a>
</td>
<td>
<img src="img/maps.png">
</td>
<td><a href="#">Divine Beast</a></td>
<td>80</td>
<td></td>
<td><img src="imagen.png"></td>
<td></td>
<td>
<div>
<img src="imagen.png">
<img src="imagen.png">
<img src="imagen.png">
</div>
</td>
<td>
<div>
<img src="imagen.png">
<img src="imagen.png">
<img src="imagen.png">
</div>
</td>
</tr>
</table>
estoy probando la forma de entrar en cada node para así poder convertir cada tabla en un array, son en un total de 7 tablas, y no todas tienen la misma cantidad de columnas, alguna sintaxis que me recomiendes para lograrlo?
lo he tratado de hacer con eregi, preg_match_all y ahora con dom, pero se me hace difícil comprender como separar cada tabla en un array ej:
Código PHP:
Ver original 'categoria'=>'TITULO1'
'Imagen 1'=>'urlimagen',
'Nombre'=>'nombre',
'ImagenMini'=>'urlimagen',
'Descripcion'=>'',
'Datos 1'=>'',
'Datos 2'=>'',
'Datos 3'=>''
);
);
'categoria'=>'TITULO2'
'Imagen 1'=>'urlimagen',
'Imagen 2'=>'urlimagen',
'Nombre'=>'',
'ImagenMini'=>'urlimagen',
'Descripcion'=>'',
'Datos 1'=>'',
'Datos 2'=>'',
'Datos 3'=>''
'Imagenes 1'=>'urlimagen',
'Imagenes 2'=>'',
'Imagenes 3'=>'urlimage, urlimage, urlimage',
'Imagenes 4'=>'urlimage, urlimage, urlimage',
);
);