- Impact
- 0
Hey I need some help with this
here is the code
i just need it to search for this string
<strong>Mfr. Model:</strong></td><td></td>
and return whatever is between the begining and ending td
here is the code
something is not working where the star is there is a mfr number that is comprised of both upercase and lowercase letters and numbers what should i use to get it to retur the results$rawhtml = $curl_result;
$chistart = strpos($rawhtml, 'Mfr. Model:');
$chidata = substr($rawhtml, $chistart, strlen('Mfr. Model:') + 100);
list($mfrid) = sscanf($chidata, '<strong>Mfr. Model:</strong></td><td>*</td>');
print $mfrid ;
i just need it to search for this string
<strong>Mfr. Model:</strong></td><td></td>
and return whatever is between the begining and ending td















