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
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>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.