07-13-2011, 10:54 PM
Code:
<html>
<head>
<meta charset="utf-8" />
<title>Wiki Page</title>
</head>
<body>
<h1>
<?php
include("rnd.php");
$file = fopen($_GET["Name"];,"w");
fwrite($file,$_GET["body"];);
fclose($file);
include("footer.php");
?>
</body>
</html>
For some reason, this isn't working.
Any ideas?