Skip to content

Instantly share code, notes, and snippets.

@taitokiss
Created November 7, 2018 08:21
Show Gist options
  • Save taitokiss/b1ea83cb5592888e1ff9c99d6b778ce4 to your computer and use it in GitHub Desktop.
Save taitokiss/b1ea83cb5592888e1ff9c99d6b778ce4 to your computer and use it in GitHub Desktop.
URLパラメータの受け取り4
<?php
$id = filter_input(INPUT_GET, 'id');
$name = filter_input(INPUT_GET, 'name');
echo $id;
echo "<br />";
echo $name;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment