The Coding of the Hack should be kinda like this then you just build on ;p
-------------------
guess_guessword template
-------------------
<form method="POST">
Type your guess here: <br>
<input type="text" name="guess" value="$yourguess">
<input type="hidden" name="num_triesgw" value="$num_triesgw">
<input type="submit" value="Submit">
</form>
thats something like the template you want to call
now you want to make another template called:
----------------
guess template <--- this template should include the variable you want to call the other template
----------------
<html>
<head>
<title>[ Title here ]</title>
</head>
<body>
$header
<!-- the variable below -- hellsatan being the variable that calls the template -->
$guess
$footer
</body>
</html>
php file should look like this:
-----------------
guess.php file
-----------------
PHP Code:
<?php
require('./global.php');
error_reporting(7);
$templatesused="guess,guess_guessword";
if($action="start_guess") {
eval("\$guess = \"".gettemplate('guess_guessword')."\";");
}
// Then You include what you want Here as well.
eval("eval("dooutput(\"".gettemplate('guess')."\");");
?>
g-force2k2