Skip to content

Instantly share code, notes, and snippets.

@indrakaw
Last active October 20, 2015 00:11
Show Gist options
  • Save indrakaw/0110af62cc7c6e1af29a to your computer and use it in GitHub Desktop.
Save indrakaw/0110af62cc7c6e1af29a to your computer and use it in GitHub Desktop.
Convert $_GET array variable to main key.
<?php
// $_GET to main key.
if (!empty($_GET['name'])) header('Location: '. '.?' .$_GET['name']); // rediriction $_GET's array.
if (!empty($_GET)) die("Hello, ". key($_GET) ."!"); // print end exit the process.
?>
<form method="get"><input type="text" name="name" placeholder="Enter your name..." required></form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment