I have a form that inserts it's values into a table in a mysql database.. i also use another form to edit the contents of that table...
My problem is that i have a multipe select list ... i imploded it's values into the table like this:
$employees = implode(',',$_POST['emp_name']);
that worked fine ...
but i can't figure out how to make the same values selected on my edit form's list????