hi all ,

if i want to fetch all image from specific part of webpage not whole webpage
how to do it.

for exam-http://www.cocoearly.com/homes/MA/Methuen/01844/899_Riverside_Drive/10171238256/index.html
any help appre

thankx

Recommended Answers

All 3 Replies

parse the urls and search for image extensions like jpg, gif, et al

if(preg_match_all('/<img\s[^>]+>/', $content, $images)){
	var_dump($images);
}

It may help you or maybe I'm wrong.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.