Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<?php
if (isset($_GET['src'])) {
echo '<textarea rows="40" cols="80">'
. htmlspecialchars(file_get_contents(__FILE__)) . '</textarea>';
echo '<p><a href="' . basename(__FILE__) . '">Zurück</a>.</p>';
exit;
}
?><!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Demo</title>
</head>
<body>
<pre>
<?php
for ($i = 0; $i < 10; $i++) {
echo str_repeat('*', $i) . "\n";
}
?>
</pre>
<p><a href="?src">Quelltext dieser Seite anzeigen</a>.</p>
</body>
</html>