tags:

views:

25

answers:

1

I need to read an http stream into an array but can't seem to get this quite right. Ultimately, what I need is an array of the html to use in an implode function. Can someone please point me in the right direction?

+1  A: 

If you only need the HTML, then the most easiest way is $content=file_get_content('http://url.of.the.site');

Itay Moav