Trying to get my parameters passed from a form an a previous page into an action handler. I can see my data with var_dump($_POST) but this code returns all blank.
<?php
$DatePosted=$_GET["date1"];
$Type=$_GET["optType"];
$Status=$_GET["optStatus"];
$Name=$_GET["txtName"];
$Description=$_GET["txtDescription"];
$Contact=$_GET["txtContact"];
$Area=$_GET["txtArea"];
One of us is confused. Why do you assign value from $_GET and then var_dump() $_POST?
"Please give us a simple answer, so that we don't have to think, because if we think, we might find answers that don't fit the way we want the world to be."
~ Terry Pratchett in Nation
Bookmarks