Or, if someone could help me with a regular expression to do what I need: Take all the data from inside a series of TDS and put them into an array, ignoreing all attributes of the td, for examle:
<td valign="top">Name</td><td>Pass</td><td class="website">Website</td><td>Address</td><td>City</td>
And put that into an array as so:
$arr[0] = "Name";
$arr[1] = "Pass";
$arr[2] = "Website";
$arr[3] = "Address";
$arr[4] = "City";