Hello I am using $_POST['value']; to grab value on the 2nd page and all the combination works including ' but when I use ", it doesnt work, so let say I will write "test" and on the 2nd page will get empty $_POST[value]; I have magic Quotes OFF and this is only happening on input fields but not on the textarea fields. I am not escaping any strings using mysql-real-escape-string Very strange, please help.
<form method="post" name="UploadForm" id="UploadForm" action="sellitem2.php" enctype="multipart/form-data" >
<input class="button_date" type="text" name="auction_title" style="text-transform:none;" id="auction_title" value="<?php echo $_POST['auction_title']; ?>" size="32" minlength="2" maxlength="21" required/>
<input class="button2" style="border-right:none; font-size:13px;" name="Next Step" id="submit" type="submit" value="Next Step" onClick="removeFocus()"/>
</form>
And on the second page I have got nothing once typed "TEST" or any " inside that field