<table>
<tr>
<th colspan="4">
<font size="3" color="#a74165">Interest Levels</font>
</th>
</tr>
<tr>
<td nowrap>
<font size="2">MobileT</font>
</td>
<td><img src="http://pictures.domain.com/images/7.gif" alt="1 on a scale of 0-4" border="0" height="15" width="9">
</td>
<td>
</td>
<td nowrap>
<font size="2">MobileC</font>
</td>
<td>
<img src="http://pictures.domain.com/images/7.gif" alt="3 on a scale of 0-4" border="0" height="15" width="27">
</td>
</tr>
<tr>
<td nowrap>
<font size="2">Moderate</font>
</td>
<td><img src="http://pictures.domain.com/images/7.gif" alt="3 on a scale of 0-4" border="0" height="15" width="27">
</td>
<td>
</td>
<td nowrap>
<font size="2">Males</font>
</td>
<td>
</td>
</tr>
<tr>
<td nowrap>
<font size="2">Wild</font>
</td>
<td><img src="http://pictures.domain.com/images/7.gif" alt="3 on a scale of 0-4" border="0" height="15" width="27">
</td>
<td>
</td>
<td nowrap>
<font size="2">Females</font>
</td>
<td>
<img src="http://pictures.domain.com/images/7.gif" alt="4 on a scale of 0-4" border="0" height="15" width="36">
</td>
</tr>
</table>
include('simple_html_dom.php');
$html = new simple_html_dom();
$html = file_get_html('http://dev.domain.com/');
$element = $html->find("td font[size=3]", 0);
echo $element-> plaintext . '<br>';
$element = $html->find("font", 7);
echo $element-> plaintext . '<br>';
$element = $html->find("font[color=red]", 0);
echo $element-> plaintext . '<br>';
$element = $html->find("font", 3);
echo $element-> plaintext . '<br>';
# city state country
$element = $html->find("font[size=2]", 3);
echo $element-> plaintext . '<br>';
$element = $html->find("font[size=2]", 10);
echo $element-> plaintext . '<br>';
$element = $html->find("font[size=2]", 11);
echo $element-> plaintext . '<br>';
$element = $html->find("font[size=2]", 12);
echo $element-> plaintext . '<br>';
$element = $html->find("font[size=-1]", 0);
echo $element-> plaintext . '<br>';
$element = $html->find("font[size=-1]", 1);
echo $element-> plaintext . '<br>';
$element = $html->find("font[size=-1]", 2);
echo $element-> plaintext . '<br>';
$element = $html->find("font[size=-1]", 3);
echo $element-> plaintext . '<br>';
$html->clear();




Find content
Not Telling
