A lightweight reusable dynamic navigation header with icons for PHP applications.
- Dynamic menu configuration
- Font Awesome icon support
- Automatic active page highlighting
- Lightweight and easy to integrate
- Simple PHP include
Clone the repository:
git clone https://github.com/kettalevi/php-dynamic-header.gitInclude the header in your page:
require "dynamic_header.php";Edit the menu items in:
config/menu.php
Example:
$menu = [
[
"title" => "Dashboard",
"icon" => "fa-solid fa-house",
"link" => "index.php"
],
[
"title" => "Users",
"icon" => "fa-solid fa-users",
"link" => "users.php"
],
[
"title" => "Reports",
"icon" => "fa-solid fa-chart-line",
"link" => "reports.php"
]
];MIT License
