I have been learning php recently and i found this strange statement that i tried to figure out but did not understand it well. This is the URI that i found
<?php
$datei = file("http://www.abc.de/cms/index.php/pps.html");
foreach($datei AS $stellenangebote)
{
echo $stellenangebote;
}
?>
Now the question that i am trying to understand is that how come it reach the .html page while it has .php before it ? And if this is a technique then What is it's name ? And why would i use such style ?