$array = array('option1', 'option2', 'option3');$array[] = 'option4';// or: (although $array[] = 'option4' is quicker)array_push($array, 'option4');