Is it possible to get php variables from the url?
e.g
test.php contains;
$value1 = 45;
$value2 = 50
$value3= 43
Would it be possible to retrieve those 3 values only using a URL to the test.php file?
e.g www.test.com/test.php?x=value1?y=value2?z=value3
So if a program sent a request of some sort to that url, it would return the 3 values