Jump to content

Set Array to different variables


twittoris

Recommended Posts

This code outputs the table fields. how do I set them into an array and assign then to a variable to be inserted into a mysql database.

 

// Load html string

$dom->loadHTML($html2);

 

// Get tables from html

$tables = $dom->getElementsByTagName('table');

 

 

// Get rows from tables

$rows = $tables->item(0)->getElementsByTagName('tr');

 

// Loop over each row

foreach ($rows as $row)

{

// Get each column by tag name

$cols = $row->getElementsByTagName('td');

 

 

// Echo values (here you can assign them in array for example)

echo $cols->item(0)->nodeValue.'<br />';

 

echo '<hr />';

Link to comment
https://forums.phpfreaks.com/topic/213248-set-array-to-different-variables/
Share on other sites

Also how would i also be able to add this table to an array.

 

</tr>

<tr>

<td headers="c1">

C/O ELECTRONICS INC.<br>

2390 PARK ROW<br>

NEW YORK, NEW YORK, 15538

</td>

</tr>

<tr>

<th scope="col" id="c4" class="leftalign">Registered Agent</th>

</tr>

<tr>

<td headers="c1">

NONE

</td>

</tr>

</table>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.