Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
<?php
include('simple_html_dom.php');
$html = file_get_html('http://www.milliyet.com.tr/');
# devMansetImage1Big div id'si.
foreach($html->find('div#devMansetImage1Big') as $e){
echo $e->innertext . '<br>';
$myfile = file_put_contents('dosya.txt', $e->innertext . '<br>'.PHP_EOL , FILE_APPEND | LOCK_EX);
}
?>