I have:
function fetchlinks(){
## include the simpledom helper #########################################################
$this->load->helper('simpledom');
$this->simpledom->file_get_html("http://www.thesite.net/thesitepath");
############################################################################################
$htmlToSearch = file_get_html("http://www.thesite.net/thesitepath");
foreach($htmlToSearch->find('a') as $element){
echo "<h1 style='color:red; '>".$element->href."</h1> <br />";
}
}
I'm calling and using the function here:
$this->load->helper('simpledom');
$this->simpledom->file_get_html("http://www.thesite.net/thesitepath");
How do I then use the contents of the ^^ above line in my foreach{}
