I was searching for hours now and still couldn't find the correct answer. This might seem simple but I need your help, here's the Problem: There are two buttons, 1.) increment button and 2.) decrement(subtract) button, when I click button 1, the value $a get +1 when I click button 2, $a get -1.
Seems simple right?
It should go back to the same page (reload), with the changed value $a
ex:
$a = 0;
1.) click increment button
2.) reload page
$a = 1;
3.) click decrement button
$a=0
very simple, I'm just not that good to figure it out on my own.