Created
August 22, 2021 17:41
-
-
Save jakubboucek/37a94d46f51587a961d547ec7e73c1de to your computer and use it in GitHub Desktop.
Vypsání dat z formuláře
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
// $_POST <--- do této proměnné se ukládají data z formuláře. | |
echo "<h1>Data z formuláře</h1>"; | |
echo "<ul>"; | |
foreach ($_POST as $name => $value) { | |
echo "<li><strong>" . htmlspecialchars($name) . ":</strong> " . htmlspecialchars($value) . "</li>"; | |
} | |
echo "</ul>"; | |
// Related for: https://www.facebook.com/groups/830017300349727/posts/6354210794596989/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment