tags:

views:

25

answers:

1
+2  A: 

I think you're missing an "=" sign on the value attribute here:

$option_block .= "<option value\"$id\">$f_name, $l_name</option>";

Maybe you meant this?

$option_block .= "<option value=\"$id\">$f_name, $l_name</option>";
Shiki
You could check if you're passing the values correctly by doing >> var_dump($_POST) in show_modcontact.php;
Shiki
Thanks so much, I was trying to fix this for soooooooooo long.
Jacksta