Currently I have a simple form with a plus and minus on it and a value in the middle. I am trying to create a href link under the plus and under the minus to call self but to either indicate which link was used (either plus or minus) or to pass the value after being incremented or decremented.
I do not want to use JavaScript/client side scripting because some browsers do not allow it but I am using PHP. I also did not want to use $_GET as other data needs to be sent to ‘self’ so I am using $_POST.
Any idea’s are welcome.
snippet of code
var_dump($_POST);
< form action="?" method="post" action="Submit" >
< input type="hidden" id="currentvalue" name="currentvalue" value="2" / >
< div class="minus" >< a href="" onclick="document.forms[0].submit();return false;" > - < /a > < /div >
< div class="currentvalue">'.$_POST["currentvalue"].'< /div >
< div class="plus"> + < /div >
Thanks
You cannot submit an HTML form without using the
buttonorinput type=image/submitelements or JS.What you can do:
input type=imageinput type=submitand killing the text viatext-indent:-999em;for modern browsers andline-heightfor IE