Skip to content

Instantly share code, notes, and snippets.

@jakubboucek
Created August 22, 2021 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jakubboucek/37a94d46f51587a961d547ec7e73c1de to your computer and use it in GitHub Desktop.
Save jakubboucek/37a94d46f51587a961d547ec7e73c1de to your computer and use it in GitHub Desktop.
Vypsání dat z formuláře
<?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