SahilMepani
6/20/2017 - 6:35 PM

PHP: Get value from url.com/?key=value

PHP: Get value from url.com/?key=value

<?php
  // url.com/?key=value
  $key = htmlspecialchars( trim($_GET['key']) );
?>