Hello all! Quick question
I originally had a submit button.
<input class="submit" type="submit" class="input" value="Add" name="command" />
but now I would like to use a <a href>
instead. The issue is, the value="Add"
is very important.
I'm currently making the <a href>
like this.
<a href="javascript:document.register.submit();">submit</a>
Any suggestions? Issue is, the site is not picking up that this specific <a href>
was clicked, and therefore won't run my php code.