Push one or more elements onto the beginning of array
<? $queue = array("p1", "p3"); array_unshift($queue, "p4", "p5", "p6"); ?>