Access widget's form value : Form Data « Form « PHP
- PHP
- Form
- Form Data
Access widget's form value
<INPUT TYPE="text" NAME="myform.email">
would be accessed in PHP as the following:
<?php
echo $_GET['myform_email'];
?>
Related examples in the same category