35632-vm/test_sidebar.php
2025-12-17 04:34:30 +00:00

11 lines
289 B
PHP

<?php
session_start();
// Simulating a logged-in user for the test
$_SESSION['user_id'] = 1;
require_once 'db/config.php';
include '_sidebar.php';
?>
<div style='padding: 20px;'>
<h1>Test Page</h1>
<p>If you see the sidebar to the left and this message, the test is successful.</p>
</div>