Geht's?
POST anstelle GET um URL string zu lesen darf ich?
Einklappen
X
-
hier die indexseite:
PHP-Code:<html>
<head>
</head>
<body>
<?php
switch($_GET['seite']){
case 10: include("forum/seite_10.php"); break;
case 20: include("forum/seite_20.php"); break;
case 30: include("forum/seite_30.php"); break;
case 21: include("forum/seite_21.php"); break;
case 31: include("forum/seite_31.php"); break;
default: include("forum/seite_10.php"); break;
}
?>
</body>
</html>
PHP-Code:<?php
$aktuelleseite = $_GET['seite'];
if(isset($_POST['submit']))
{
$_GET['seite'] = $aktuelleseite;
$eintrag = "INSERT INTO ...;
echo "fertig";
}
?>
<form name="form1" method="post" action="<?php print $PHP_SELF?>">
<input name="formemail" type="text" id="formemail">
<input name="submit" type="submit" id="submit" value="Submit">
</form>
Kommentar
Kommentar