<?php
function getlink($x)
{
$y=$x.'.php';
return($y);
}
$a=array('0','1','2','3','4');
for($i=0;$i<5;$i++)
{
echo '<li><a href='.getlink($a[$i]).'>'.$a[$i].'</li>';
}
echo '<iframe src="">';
?>
when i click on the links instead of new tab it should be open in iframe