what i meant is:
you enter a string:
asdfg,wert,34,ert
now implode needs an array as argument, not a string
when we submit a post field we enter a string
this is why you should remove implode() line
later you can take this string, from DB
and turn it into an array, using:
$myarr = explode ( ',' , $blackout_date ); // asdfg,wert,34,ert
will make
$myarr[0] = 'asdfg';
$myarr[1] = 'wert';
$myarr[2] = '34';
$myarr[3] = 'ert';