我不知道如何在文本区域中打开文件的内容然后编辑文件。老实说,真的没有具体的问题。我已经为此工作了几天,结果几乎为零。在这一点上,我的想法已经不多了,我需要一双新的眼睛。所以朋友们,看看并告诉我你是否在我的代码中看到了可能明显的错误:
这些是文件功能
function view_files($dir)
{?>
<table>
<tr>
<form method='POST' action='?act=file&dir=<?php echo base64_encode($dir);?>'>
<td><input type='text' name='dir' size='50' value='<?php echo $dir; ?>'>
<input type='submit' value='Go'></form></td
</tr>
<table border='1'><tr>
<td width='175'><b>Name</b></td>
<td><b>Size</b></td>
<td><b>Permissions</b></td>
<td><b>Edit</b></td>
<td><b>Delete</b></td>
<td><b>Chmod</b></td>
</tr>
<?php
if($handle = opendir($dir))
{
while(($file = readdir($handle)) !== false)
{
if($file != '.' && $file != '..')
{?>
<table><td>
<?php echo $file; ?>
<td width='165'><a href='?act=edit&file=<?php echo base64_encode($file);?>'><b id='me'><u>Edit</u></b></a></td>
<td width='225'><a href='?act=del'><b id='me'><u>Delete</u></b></a></td>
<td width='190'><a href='?act=chmod'><b id='me'><u>Chmod</u></b></a></td>
</td></table>
<?php
}
}
}
}
function edit_files($file)
{
if(isset($_POST['f']) && isset($_POST['d']))
{
$handle = fopen($_POST['f'], 'w');
if(!$handle)
{
echo 'Failed to open selected file.';
}
else
{?>
<form method='POST' action='?act=edit&file=<?php echo base64_encode($file);?>'><textarea rows='17' cols='70' name='d'><?php
$data = htmlspecialchars(file_get_contents($_GET['edit']));
echo $data;
fwrite($handle, $_POST['d']);
}
if(file_exists($file))
{
$handle = fopen($file, 'r');
$contents = fread($handle, filesize($file));
echo htmlspecialchars($contents);
}?>
</textarea><input type='submit' value='Save Changes' /></form><?php
}
}
这是它开始的地方:
<?php
if(isset($action) && !empty($action))
{
if($action == 'file')
{?>
<table border='1'><th><b><a id='info' href='?act=file'>[ File Management ]</a></b></th></table><?php
view_files($dir);
}
elseif($action == 'edit')
{?>
<table border='1'><th><b>[ Edit Files ]</b></th></table><?php
edit_files($file);
}
顺便说一下,$action == $_GET['act'] 你知道的。我认为这就是所有相关的代码。基本上发生的情况是,当我单击脚本中的编辑按钮时,它只会发布 [ 编辑文件 ] 表头,仅此而已。所以.. Idk 我已经为此工作了好几天,但没有任何结果。