I'm using URL rewriting through .htaccess on my site. Then I submit through PayPal's ExpressPay and get something like the following returned:
http://mydomian.com/cart/success?token=EC-123456789&PayerID=123456789
The /cart and /success are great, but is there an easy way to grab the "token" an "PayerID" variables?
Here's the .htaccess I'm working with:
RewriteRule ^([^/\.]+)/?$ index.php?load=$1
RewriteRule ^([^/\.]+)/([^/\.]+)/?$ index.php?load=$1&query=$2
RewriteRule ^([^/\.]+)/([^/\.]+)/([^/\.]+)/?$ index.php?load=$1&query=$2&query2=$3 [L]