kuddeldaddeldu
Erfahrenes Mitglied
Der Fehler muss im Formular liegen. Oder stellst Du irgendwo etwas mit der $_POST-Variablen an?
LG
LG
Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
<form action="index.php?site=protect" method="post">
Ordnername: <input type="text" name="folder" /><br />
Passwort: <input type="text" name="password" /><br />
Links: <textarea name="links" cols="50" rows="7"></textarea><br />
<input type="submit" name="protect" value="Protect" />
</form>
Mit der POST Var. mach ich nix.
Das Formular sieht so aus:
HTML:<form action="index.php?site=protect" method="post"> Ordnername: <input type="text" name="folder" /><br /> Passwort: <input type="text" name="password" /><br /> Links: <textarea name="links" cols="50" rows="7"></textarea><br /> <input type="submit" name="protect" value="Protect" /> </form>
Array
(
[folder] => fdgfdg
[password] => dfgfdg
[links] => fdgfdg
fdgfdg
fdgfdg
fdgfd
[protect] => Protect
)
<?php
$page = "protect.tpl";
if(isset($_POST['protect']))
{
if($_POST['links'] != '')
{
$links = explode("\n", $_POST['links']);
print_r($_POST);
$tpl->assign("submit", 1);
$tpl->assign("msg", "Eingetragen");
}
else
{
$tpl->assign("msg", "Bitte geben Sie LInks ein");
}
}
else
{
$tpl->assign("submit", 0);
}
?>
Array
(
[folder] =>
[password] => alex
[links] => http://google.de
http://tutorials.de
http://google.com
[protect] => Protect
)
Array
(
[folder] =>
[password] => alex
[links] => http://google.de
http://tutorials.de
http://google.com
[protect] => Protect
)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Link Protection</title>
</head>
<b>Eingetragen</b>
<br /><br />
<body>
</body>
</html>