<?php

$name=array("vahid","navid","reza");
$name2=array("sara","nahid","nazanin");
foreach ($name as $value){
echo $value . "<br>";
}

?>