I'm trying to pass a value stored in a hidden field in a form over to my php script, but can't seem to get it to work.
php scriptHTML Code:<form action='scripts/proc_email_form.php' method='post' name='form' id='form' accept-charset='utf-8'> <fieldset> <input type='hidden' name='unreguser' value='4' id='unreguser' /> <textarea name='message' rows='8'></textarea> </fieldset> <input type='submit' value='Send' /> </form>
I have also tried using $_POSTHTML Code:$unreguser = $_REQUEST['unreguser'];



Reply With Quote




Bookmarks