PHP -Dateiinhalt erhalten
<?php
file_get_contents("file.txt");
?>
Exotic Butters
<?php
file_get_contents("file.txt");
?>
<?php
// Read 14 characters starting from the 21st character
$section = file_get_contents('./people.txt', FALSE, NULL, 20, 14);
var_dump($section);
?>