Is there anything wrong with this little bit of code?
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Tic-Tac-Toe</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<form action="" method="post">
<input type="hidden" name="turn" value="<? printf($turn) ?>">
<?php WriteTableHeader(); ?>
<div align="center">
<input type="submit" name="btnNewGame" value="New Game">
<b>Difficulty Level</b>
<select name='dlDifficulty'>
<option value="1">Easy</option>
<option value="2" SELECTED>Normal</option>
<option value="3">Not-Likely</option>
</select><br><br>
<?php
// Render the game
Render();
?>
</div>
<?php WriteTableFooter(); ?>
</form>
</body>
</html>
I keep getting this error:
PHP Fatal error: Call to undefined function WriteTableHeader() in C:\Program Files\DzSoft\PHP Editor\php85.tmp on line 29
[Added
tags -- NogDog][/i]