How can I remove the scrollbar on the right side of a PHP page and only have it on the included page in the middle?

To remove the scrollbar on the right side of a PHP page and only have it on the included page in the middle, you can use CSS to style the included page with a fixed height and overflow property set to auto. This will create a scrollable area within the included page while keeping the main PHP page scrollbar-free.

<!DOCTYPE html>
<html>
<head>
    <style>
        .included-page {
            height: 400px; /* Set the height of the included page */
            overflow: auto; /* Enable scrolling within the included page */
        }
    </style>
</head>
<body>
    <!-- Main PHP page content here -->
    <div class="included-page">
        <?php include 'your-included-page.php'; ?>
    </div>
</body>
</html>