I have created dynamic url’s like this:
http://www.example.com/index.php?page=test
But, if I send values via GET, I cannot get the values because the URL is structured like this:
http://www.example.com/index.php?page=test?value=1
How could I get the values without using POST? This is because I use a third-party app and they only support GET.
If you create your dynamic url’s like
http://www.example.com/index.php?page=test&then you will get
http://www.example.com/index.php?page=test&?value=1which I believe you should be able to work with. You will then just have to look for the first parameter after your initial ? as
$_GET['?value']I believe