我正在尝试创建一个在线网站共享但我无法创建一个页面,这样做会自动添加或删除网站中的文件。请帮我解决这个问题。而且我无法将PHP代码链接到要执行的html页面,请帮助我在已经构建的设计页面中创建html和PHP,以便我可以完成我的项目。
页面的Php跟随
<html>
<body style="background:#e9e9e9; font-family:Verdana; font-size:180%">
<head>
<p style="text-align:center; size:20%">Download Now!
<br>No Need of Internet!</p>
</head>
<div style="background:white; margin-right:2%; margin-left:2%; font-size:150%">
<font color="cornflowerblue">Owais</font> shared some files with you.
<hr>
Files
<hr>
<?php
if ($handle = opendir('C:\Users\makro\Documents\Share\Send')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
$thelist .= '<li><a href="'.$file.'">'.$file.'</a></li>';
}
}
closedir($handle);
}
?>
<h1>List of files:</h1>
<ul><?php echo $thelist; ?></ul>
</div>
</body>
</html>
&#13;