I have a page with one or more images that when user clicks an image this opens another page that should have a parameter from the sending page set. The ultimate goal is to use the parameter as a variable I can use to manipulate a mysql database.
Code posted below-
[php]
// Page1
<a href="Image Test.php?image_name=VG-658" target="new"
// Page2
<?php $_GET; $myvar = $_GET; echo $myvar; ?><!doctype html>
Image TestThis is a test
[/php]