I am trying to check and see if a field is posted or not, if not
posted then assign $location which is a session variable to
$location_other . If it is posted then just assign it to
$location_other
I keep getting "Notice: Undefined index: location_other" referring to
(!($_POST['location_other '))
if (!($_POST['location_other '])) {
$location_other = $location;
}
else
if ($_POST['location_other '])
$location_other = $_POST['location_other '];
THANKS!!!
-Scott
posted then assign $location which is a session variable to
$location_other . If it is posted then just assign it to
$location_other
I keep getting "Notice: Undefined index: location_other" referring to
(!($_POST['location_other '))
if (!($_POST['location_other '])) {
$location_other = $location;
}
else
if ($_POST['location_other '])
$location_other = $_POST['location_other '];
THANKS!!!
-Scott
Comment