嗯....我想知道如何制作一个脚本来创建一个html页面。所以当脚本执行时,它会创建一个新页面。像这样的东西: mydomain.com/test.html 。该脚本应该创建 test.html 页面!
这是我的工作:
<form action="index.php" method="post">
<input type="text" name="nick" value="Enter NIck" />
<input type="submit" value="Create" />
</form>
<?php
$nick=$_POST['nick']; // get the users input
$fh=fopen('$nick' , 'W') // Create the page
$contents= include 'sys.php';
fwrite($fh, $contents);
fclose($fh);
echo "Redridectring to your page....";
header('Location: $nick');
?>
现在,这段代码应该做的是创建一个名为 $nick 的页面。因此,如果输入是“bleugh”,则 $nick 应该是 $nick="bleugh"。然后它将创建页面“bleugh”,包括 sys.php,然后是页面的标题。这是赖特吗?它会起作用吗?