This works, can't post much of an explanation, but its self-explanitory... Gotta go, getting off work now, be home in an hour. See ya then!
<?php
$first = array("One", "Two", "Three", "Four", "Five", "Six");
$second = array("Two", "Five", "Six", "Twenty", "Fifty-eight");
$arrList = array();
for($i=0;$i<sizeof($first);$i++) {
if(in_array($first[$i], $second)) {
$arrList[] = $first[$i];
}}
foreach ($arrList as $i) {
echo "$i<br>";
}
?>