EnesE
Grünschnabel
Ich weiß, dass dieses Thema nicht aktuell ist, aber du könntest es so machen.
if "$name"=="$selectedname" {
if "$passwort"=="$selectedpasswort" {
echo "<meta http-equiv="refresh" content="5; URL=...">"
// oder auch mit JS
echo "<script>document.href = url;</script>
}
}
Du hast in deinem Code einige Fehler hier die Korrektur:
PHP:
<?php
if($name == $selectedname){
if($passwort == $selectedpasswort){
echo '<meta http-equiv="refresh" content="5; URL=...">';
// oder auch mit JS
echo '<script>document.href = url;</script>';
}
}
?>
Ps: Ich will nur helfen