| Path : /home/vishqocm/pcib.in/student/includes/ |
| Current File : //home/vishqocm/pcib.in/student/includes/db_config.php |
<?php
// Database connection for student AJAX calls
// This file serves as a bridge for AJAX calls that need to connect to the database
// Include the main database configuration
require_once __DIR__ . '/../../admin/database/db_config.php';
// If no connection is available, create one
if (!isset($conn) || $conn->connect_error) {
die(json_encode([
'success' => false,
'message' => 'Database connection failed: ' . ($conn->connect_error ?? 'Unknown error')
]));
}
?>