下面是一个简单的PHP代码示例,用于创建一个基本的论坛发帖功能:
<?php
// 连接数据库
$servername = "localhost";
$username = "your_username";
$password = "your_password";
$dbname = "your_database";
$conn = new mysqli($servername, $username, $password, $dbname);
// 检查连接
if ($conn->connect_error) {
die("连接失败: " . $conn->connect_error);
}
// 处理表单提交
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$title = $_POST["title"];
$content = $_POST["content"];
$author = $_POST["author"];
// 插入数据到数据库
$sql = "INSERT INTO posts (title, content, author) VALUES ('$title', '$content', '$author')";
if ($conn->query($sql) === TRUE) {
echo "发帖成功";
} else {
echo "发帖失败: " . $conn->error;
}
}
// 关闭数据库连接
$conn->close();
?>
<!DOCTYPE html>
<html>
<head>
<title>论坛发帖</title>
</head>
<body>
<h2>发帖</h2>
<form method="post" action="<?php echo $_SERVER["PHP_SELF"]; ?>">
<label for="title">标题:</label>
<input type="text" name="title" required><br><br>
<label for="content">内容:</label><br>
<textarea name="content" rows="5" cols="40" required></textarea><br><br>
<label for="author">作者:</label>
<input type="text" name="author" required><br><br>
<input type="submit" value="发帖">
</form>
</body>
</html>
请注意,这只是一个基本的示例代码,你可能需要根据自己的需求进行修改和完善。此外,为了安全起见,你应该在插入数据库之前对用户输入进行适当的验证和过滤,以防止SQL注入等安全问题。
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站