tis is the code:
<? include "header.php";
function webspace($username, $content) {
$FILE = fopen("users/$username/file.htm","w");
fwrite($FILE,$content);
fclose($FILE);
}
$cs = isset($content);
$foo = true;
if ($cs == $foo)
{
webspace($username, $content);
?>
Done!!!<br>
<form name=ss method=POST action="users/<? echo $username ?>/default.php">
<input type=submit value="Continue" >
</form>
<?
} else {
?>
You must have SOME content on your webpage!!!<br>
<form name=ss method=POST action="webpage.php">
<input type=submit value="Continue" >
</form>
<?
... continued