http://www.local.com/?code=xxxxxxxxxxxxxxxxxxxxxxxx
I want to retrieve and save code parameter in PHP
http://www.local.com/?code=xxxxxxxxxxxxxxxxxxxxxxxx
I want to retrieve and save code parameter in PHP
you can try this
$code = $_GET['code'];
now $code will have value of code which is in url
Maybe this will work:
<?php $code = $_GET['code']; ?>
$code should now have the code in the URL.
For more information on $_GET, see this page.