Hi all, I have fetched the div
element from another website, thanks to this group.
require_once('E:\wamp\www\in.com\components\simple_html_dom.php');
$html=file_get_html('http://www.behance.net/samerh/frame');
$ret=$html->find("div[id=frame-gallery]");
$ret=array_shift($ret);
echo($ret);
And the content in that div is all images and it is displaying in a single list, instead I want to arrange it into 3 columns and 10 rows by writing the css and js file for it.
It should be dynamic, like if any new image of a project is added or any changes made in that site it should be displayed in my current website.
Please help show me how do that arrangement in css,
Thanks in advance.