Webové technológie
Poznámky:
6. Formuláre
6.1 Metóda GET
<form action="php_kapitola6.php" method="get">
<input type="text" name="text">
<input type="submit" name="odosli">
</form>
<?php
if (isset($_GET["odosli"])) {
echo "Napísal si" . $_GET["text"];
}
?>
<input type="text" name="text">
<input type="submit" name="odosli">
</form>
<?php
if (isset($_GET["odosli"])) {
echo "Napísal si" . $_GET["text"];
}
?>
Zobraziť výsledok
6.2 Metóda POST
<form action="php_kapitola6.php" method="post">
<input type="text" name="text">
<input type="submit" name="odosli">
</form>
<?php
if (isset($_POST["odosli"])) {
echo "Napísal si" . $_POST["text"];
}
?>
<input type="text" name="text">
<input type="submit" name="odosli">
</form>
<?php
if (isset($_POST["odosli"])) {
echo "Napísal si" . $_POST["text"];
}
?>
Zobraziť výsledok