Ok here is what I came up with, it works, is there an easy way to set the initial session ID number
<?PHP
session_start();
//$_SESSION['ID2'] = 146;
$x = $_SESSION['ID2'];
$x++;
$_SESSION['ID2'] = $x;
$ID = $_SESSION['ID2'];
echo $ID;
$output .= "<iframe src=\"iframe.php?u=$ID\" width=\"400\"></iframe>";
echo $output;
?>