Home
Logout
Login
Chucky
1:27 hour
Rating 8/10 â
Information about the movie
Genre:
Horror
Actors:
Brad Dourif, Jennifer Tilly
Comments
Post Comment
prepare($sql)) { $stmt->bind_param("iss", $movie_id, $username, $comment); $stmt->execute(); $stmt->close(); } header("Location: " . $_SERVER['HTTP_REFERER']); exit(); } $sql = "SELECT username, comment, created_at FROM comments WHERE movie_id = ? ORDER BY created_at DESC"; if ($stmt = $link->prepare($sql)) { $stmt->bind_param("i", $movie_id); $stmt->execute(); $stmt->bind_result($username, $comment, $created_at); while ($stmt->fetch()) { echo "
$username
($created_at):
$comment
"; } $stmt->close(); } ?>
Comments
$comment