Also mal ein paar scripts:
->Wenn du entweder Wurst.html oder nichts hast:
<html>
<script type="text/javascript">
function Wurst(){
var abcd = test.value;
if(abcd == "Chilliwurst"){
location.href="Würstchen.html";}
}
else{ }
</script>
<input type="text" name="test">
<input type="button" onClick="Wurst()" value="Bestätigen">
</html>
->Wenn du mittels Namen auf eine Bestimmte Seite befördert werden willst:
<html>
<script type="text/javascript">
function Wurst(){
location.href= test.value + ".html";
}
else{ }
</script>
<input type="text" name="test">
<input type="button" onClick="Wurst()" value="Bestätigen">
</html>
->Php
<?php
$Name = "Chilliwurst"
if($Eingegebene == $Name){
header ("Location: Chilliwurst.html")}
?>
->Noch eins in Php: Hier frage ob Chilliwurst "enthalten" ist.
$gesucht = "Chilliwurst";
$pos = strpos($DasEingabefeld, $Gesucht);
if($pos === false){
} else {
header ("Location: Chilliwurst.html");}
-> Bei den beiden Phps müssen die Variablen mit <form action> Bestimmt werden.