Code:<td class="lName" colspan=2 width="100%"> DESERT FOOTHILLS MECHANICAL </td>
The reg exp I am using is not working....I think it's because there is so much white space?
Code:<td class=\"lName\" colspan=2 width=\"100%\">(.*)<\/td>
| SitePoint Sponsor |
Code:<td class="lName" colspan=2 width="100%"> DESERT FOOTHILLS MECHANICAL </td>
The reg exp I am using is not working....I think it's because there is so much white space?
Code:<td class=\"lName\" colspan=2 width=\"100%\">(.*)<\/td>
Code:#<td class=\"lName\" colspan=2 width=\"100%\">(.+?)<\/td>#s
Saul
PHP Code:preg_match_all('/<td colspan=2>.+?<br>(.*)<\/td>/isU', $data, $match);
Saul
Bookmarks