I\'ve recently learned how to join 2 arrays using the + operator in PHP.
But consider this code...
$array = array(\'Item 1\'); $array += array(\'Ite
you may use operator . $array3 = $array1.$array2;