I have 3 forms. I fill one form $a and $b. And also entered variable in PHP $c = 1; In second window I can use variable £a and $b by $a = $_POST['a']; But $c is zero. Why?
how to use variable $a in one window and send data using forms into another window and have same $a variable???
Perhaps you could create a hidden field in your form to pass on the value of $c
<input type="hidden" name="c" value="<?=$c?>" >
You can then get the value of c in the next page with
$c = $_POST['c'];
hth
Thank you for help. It's works. 🙂