it shows The page cannot be displayed
<?
switch($step)
{
case '1':
one();
break;
case '2':
two();
break;
case '3':
thre();
break;
default:
one();
break;
}
function one()
{
print '
this is the test page 1
<form method="post" action="?show=adnan&step=2">
<input type="submit" value="go">
</form>
';
}
function two()
{
print '
middle
';
}
function thre()
{
print '
end
';
}
?>