I am new to PHP and started learning using w3cschools. I made simple GET query to get query string from URL.
<?php
$string = $_GET['q'];
var_dump($string);
?>
I saw this post. But it did not help me wither. Any suggestion and guidelines would be helpful.