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
$url = $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
echo "<title>". $url ."</title>";
?>
Was meinst du damit?Hallo,
Die Seite beinhaltet ein PHP-Script, welches die URL verändert,
-61-
$url="/seite1/beispiel1.html";
$teile = explode("/", $url);
$titel= substr($teile[count($teile)-1],0,-5);
echo "Meine Domain - ".strtoupper($titel[0]).substr($titel,1);
$url = $_SERVER['REQUEST_URI'];
if ( preg_match("#\=(.+?)\.#s",$url,$titel) ) {;
$titel=$titel[1];
$titel = "Mit GET ".strtoupper($titel[0]).substr($titel,1);
} else {
$teile = explode("/", $url);
$titel= substr($teile[count($teile)-1],0,-5);
$titel = "Ohne GET ".strtoupper($titel[0]).substr($titel,1);
}
echo $titel;