Good all the time of day.
There is a.php page, and on it there is a form, which with the action (action) method POST sends data to b.php page for processing. Next comes the condition:
if (условия == удовлетворяют) { // выполняем действия 1 с переменными $iv1, $iv2, $iv3, $iv4 // выполняем действия 2 header("Location: c.php"); exit; } What should I write instead of “perform actions 2” so that the data by the post method would pass variables to the c.php page?