Okay, so I have my form:
<form method="get" action="./plans.php"><INPUT TYPE="image" SRC="images/learn_more.png" ALT="Submit Form" NAME="piglet" class="learn-more-image"></form>
And I have my isset:
if(!isset($_GET['piglet'])){
Hi
} else {
Hello
}
The problem is with the form, when I click a link it comes up with .php?piglet.x=44&piglet.y=8 instead of .php?piglet which it was it needs to function correctly.
Any ideas?