Hello, I have script1 that has a hidden field
<input type="hidden" name="1" value="ok">
I want to transfer this via header of script2:
header(location: 'script3.php'. $_POST['1=ok'] );
to script3:
if ($_POST['1']=="ok") {
......
Can somebody please help me how to do that?