Arster-Boy
Erfahrenes Mitglied
Ich versuche etwas weiterzuleiten mit PHP, aber es passiert nichts:
PHP:
<html>
<head>
<style type="text/css">
body {
font: normal normal normal 20px/10px times;
color: #D7DFE5;
background-color: #0077CC;
text-align: center;
}
.caption {
font: normal normal normal 30px/10px times;
text-decoration: none;
text-align: center;
color: #D7DFE5;
}
</style>
<title>Datenbank</title>
</head>
<body>
<p class="caption" >Datenbank</p>
Datenbank wird abgefragt <b>. . .</b><br />
<br />
Weiterleitung <b>. . .</b>
<?php
$GET['inhalt'];
$inhalt = strtolower($inhalt);
if ($inhalt == "1234") {
header ("location: lexikon.php?suche=123"); }
else {
header ("location: lexikon.php?suche=none"); }
?>
</body>
</html>