If I have a url that looks like this, what\'s the best way to read the value
http://www.domain.com/compute?value=2838
I tried parse_u
parse_u
For http://www.domain.com/compute?value=2838 you would use $_GET['value'] to return 2838
$_GET['value']