Topic: Undefined index
ok im trying to work on my calendar mod, and right now im trying to add the birthday section to the profile, and on line 800 i add
$birthday = $_POST['bday_year']."-".$_POST['bday_month']."-".$_POST['bday_day'];
and i get the error
Notice: Undefined index: bday_year in profile.php on line 800
Notice: Undefined index: bday_month in profile.php on line 800
Notice: Undefined index: bday_day in profile.php on line 800
than i try to edit the query info by adding this befor the implode(',', $temp)
birthday='.$birthday.',
and i get the error "unable to update profile"
would anyone like to help me out?