function index() { //$this->load->view("welcome_message"); $this->load->library("Simple_html_dom"); $html = file_get_html("http://localhost/test.htm"); foreach($html->find("a") as $e) echo $e->href . "<br>"; }