How can the edit function in a PHP forum be accessed and utilized effectively?

To access and utilize the edit function in a PHP forum, you can create a form that allows users to edit their posts and update the information in the database. This form should pre-fill the existing post content for easy editing. Once the form is submitted, you can update the post in the database with the new content.

<?php
// Connect to database
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "forum";

$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

// Retrieve post content from database
$post_id = $_GET['post_id'];
$sql = "SELECT post_content FROM posts WHERE post_id = $post_id";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
    $row = $result->fetch_assoc();
    $post_content = $row['post_content'];
}

// Update post in database
if ($_SERVER["REQUEST_METHOD"] == "POST") {
    $new_content = $_POST['new_content'];
    $sql = "UPDATE posts SET post_content = '$new_content' WHERE post_id = $post_id";
    $conn->query($sql);
    header("Location: forum.php");
}

$conn->close();
?>

<form method="post" action="">
    <textarea name="new_content"><?php echo $post_content; ?></textarea>
    <input type="submit" value="Update Post">
</form>