I am wondering how I would put information from my website in the URL on the first page of my site, and then on the next page, use $_GET to get the variables fr
$_GET
Example Link: http://example.com/page.php?name=Charles
http://example.com/page.php?name=Charles
If you used $_GET["name"] it would return the value Charles
$_GET["name"]
Charles
For more information on $_GET look at http://php.net/manual/en/reserved.variables.get.php