File Manager
Editing: header1.php
<?php //require_once 'config.php'; require_once 'db.php'; // Initialize database connection $db = new Database(); $products = $db->getUserProducts($user_id, 3); // Featured products for homepage // Get current page for active menu styling $current_page = basename($_SERVER['PHP_SELF'], '.php'); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- SEO Meta Tags --> <title><?php $page_titles = [ 'index' => 'Home - ' . SITE_NAME, 'products' => 'Products - ' . SITE_NAME, 'services' => 'Services - ' . SITE_NAME, 'about' => 'About Us - ' . SITE_NAME, 'contact' => 'Contact Us - ' . SITE_NAME ]; echo $page_titles[$current_page] ?? SITE_NAME; ?></title> <meta name="description" content="<?php echo SITE_DESCRIPTION; ?>"> <meta name="keywords" content="business, products, services, template"> <meta name="author" content="<?php echo SITE_NAME; ?>"> <meta name="robots" content="index, follow"> <!-- Open Graph Meta Tags --> <meta property="og:title" content="<?php echo SITE_NAME; ?>"> <meta property="og:description" content="<?php echo SITE_DESCRIPTION; ?>"> <meta property="og:type" content="website"> <meta property="og:url" content="<?php echo SITE_URL; ?>"> <!-- Favicon --> <link rel="icon" type="image/x-icon" href="#"> <!-- Font Awesome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@400;600&display=swap" rel="stylesheet"> <!-- CSS --> <!-- <link rel="stylesheet" href="<?php echo SITE_URL; ?>style.css"> --> <link rel="stylesheet" href="style.css"> </head> <body> <!-- Header & Navigation --> <header class="header"> <div class="container"> <nav class="navbar"> <div class="logo"> <a href="index.php"><?php echo SITE_NAME; ?></a> </div> <ul class="nav-menu" id="navMenu"> <li><a href="index.php" class="<?php echo $current_page == 'index' ? 'active' : ''; ?>">Home</a></li> <li><a href="products.php" class="<?php echo $current_page == 'products' ? 'active' : ''; ?>">Products</a></li> <li><a href="services.php" class="<?php echo $current_page == 'services' ? 'active' : ''; ?>">Services</a></li> <li><a href="about.php" class="<?php echo $current_page == 'about' ? 'active' : ''; ?>">About</a></li> <li><a href="contact.php" class="<?php echo $current_page == 'contact' ? 'active' : ''; ?>">Contact</a></li> </ul> <div class="hamburger" id="hamburger"> <span></span> <span></span> <span></span> </div> </nav> </div> </header> <main class="main-content">
💾 Save
⬅ Back