rendered paste body<html>
<head>
<h1>test</h1>
</head>
<body>
<? php
function displayForum0()
{
echo "<h2>Welcome</h2>";
echo "<table name='some_table' align='center'>
<tr>
<td>
<h3>example I know i should use font instead of headers</h3>
</td>
</tr>
";
}
function displayForum1($someStuff)
{
echo "this is $someStuff";
}
function changeStuff($var0,$var1)
{
if (isset($var0))
{
return $var2;
}
else
{
return "it died!!"
}
}
if(isset($_POST['came_form_displayForm0']))
{
$tmp=changeStuff( $_POST['came_form_displayForm0'] );
displayForum1($tmp);
}
else
{
displayForm0();
}
?>
</body>
</html>