帮我写一个php代码要求点击网页编辑按钮实现编辑操作请写出html+php代码
时间: 2024-03-10 22:43:24 浏览: 123
好的,以下是一个简单的实现点击网页编辑按钮进行编辑的 HTML + PHP 代码:
HTML 代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>编辑页面</title>
</head>
<body>
<h2>编辑页面</h2>
<form action="edit.php" method="post">
<label for="content">输入要编辑的内容:</label>
<textarea id="content" name="content" rows="10" cols="50"></textarea><br><br>
<input type="submit" name="submit" value="编辑">
</form>
</body>
</html>
```
PHP 代码(编辑页面):
```php
<?php
if(isset($_POST['submit'])) {
$content = $_POST['content'];
$file = fopen("content.txt","w") or die("无法打开文件!");
fwrite($file,$content);
fclose($file);
echo "内容已保存!";
}
?>
```
PHP 代码(查看页面):
```php
<?php
$file = fopen("content.txt","r") or die("无法打开文件!");
$content = fread($file,filesize("content.txt"));
fclose($file);
echo $content;
?>
```
以上代码实现了一个简单的点击网页编辑按钮进行编辑的功能,用户在编辑页面输入内容后,点击编辑按钮,会将内容保存到服务器上的一个文本文件中。在查看页面,用户会看到之前编辑保存的内容。
阅读全文