Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
api
/
price_hunt
/
example
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php include '../simple_html_dom.php'; $html = file_get_html('http://www.google.com/'); foreach ($html->find('img') as $e) { $e->outertext = ''; } foreach ($html->find('input') as $e) { $e->outertext = '[INPUT]'; } echo $html;