how to send post variables in header php

Solutions on MaxInterview for how to send post variables in header php by the best coders in the world

showing results for - "how to send post variables in header php"
Flavien
15 Sep 2016
1<form name="myform" action="" method="post">
2
3<p>Name</p>
4<input type="text" name="name" value="" />
5<span class="warning"><?php if (isset($errors['name'])) echo $errors['name']; ?> </span>
6
7<p>Employer</p>
8<input type="text" name="employer" value="" />
9<span class="warning"><?php if (isset($errors['employer'])) echo $errors['employer']; ?> </span>
10
11<input name="somename" type="hidden" value="somevalue"/>
12<input type="submit" value="send">
13</form>
14