$a = "1-300";$b = explode("-",$a);print_r($b);
$a=array("red","green"); array_push($a,"blue","yellow"); print_r($a);
array_push($a,"blue","yellow")