How can you match the following figure in $_GET by PHP?
I have the following URL
<a href="?questions&777">To solve this problem in PHP</a>
The number "777" changes for each question. I know that you can get the first parameter by if(array_key_exists('questions', $_GET) { -- // do this --}
.
However, I am not sure how you can refer to the figure. The same would be something like [0-9]{1-9}
in Perl.