Zitat:
Zitat von Mew
|
Man wird aber nicht weitergeleitet ;)
Probiers das:
PHP-Code:
<?PHP
if($_POST['senden']) {
$url = "http://deinedomain.de";
$link = $_POST["link"];
$pfad = $url."/".$link."/heute.html";
header("location:$pfad");
}
?>
<html>
<body>
<form action="test.php" method="post">
<input type="text" name="link">
<input type="submit" name="senden" value="Abschicken">
</form>
</body>
</html>