Search code examples
phphtmltexthttp-posthidden-field

PHP: How to post hidden field with style='display:none'


This doesn't get posted if it's hidden like this, how do i get around it?

<input name="Pid" style="display:none"/>

and PHP.

$Pid = preg_replace ('#[^0-9 ]#i', '', $_POST['Pid']);

Solution

  • Kindly use it as:

    <input name="Pid" type="hidden" />