Path : /home/vishqocm/pcib.in/includes/
File Upload :
Current File : /home/vishqocm//pcib.in/includes/db_connect.php

<?php
// Database connection for 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')
    ]));
}
?>