<?php
function aliohjelma1()
{
echo "aliohjelma1 <br>";
aliohjelma2();
}
function aliohjelma2()
echo "aliohjelma2 <br>";
aliohjelma1();
?>