Seems unnecessary denormalization of your data, since if you ever need those columns in an "array", you could just do so at select time:
select whatever, something_else, concat_ws(',', pic1, pic2, pic3, pic4, pic5) as pics
from the_table
Then if you need to treat it as a PHP array, just implode it:
$pics = implode(',', $row['pics']);