I was wondering how can I get a value from a hidden field using PHP?
Here is a hidden field.
<input type="hidden" name="delete" value="' . $row['delete_id'] . '" />
just like not a hidden meaning.
$_POST["delete"]
I assume the hidden field is in shape. So give it an identifier and do it as usual, you will get the value from the input field
Example: $_REQUEST['delete']
$_REQUEST['delete']
if you use the post method, use $ _POST ['delete']; if you use the get method, use $ _GET ['delete']; Or for both methods use $ _REQUEST ['delete'];
Source: https://habr.com/ru/post/1308240/More articles:Qt / C ++ event loop exception handling - exceptionjQuery, qTip: tooltips font-size: always the same - jquery-pluginsPoor StringTemplate performance - c #The general type of cast to primitive - genericsSelect return dynamic columns - sqlRails: how does background file loading work? - ruby-on-railsAutomatically update or delete records (records) after x time in coldfusion - coldfusionSerialize an array of objects as Xxxx, not ArrayOfXxxx - c #How do I access Active Directory from a C # application running on mono on Linux? - c #Formatting ASP.NET ReportViewer with CSS classes and online rules? - c #All Articles