Posted by Rik on 10/24/06 16:02
cainwebdesign@gmail.com wrote:
> I need to create a simple page to find the .gif file below from the
> page below. No matter what I try it doesn't work.... Any ideas?
>
> http://www.toysrus.com/product/index.jsp?productId=2327085
>
>
> prod_AddtoCart.gif
preg_match('|<div[^>]*?id="toShow"[^>]*>.*?<img[^>]*?src="([^"]*)"|si',$htm
l,$match);
$src = $match[1];
--
Grtz,
Rik Wasmus
[Back to original message]
|