Step 1: Create Database Table (db.php
)
You create a table called employees
with columns for id
, name
, position
, office
, age
, start_date
, and salary
. This table is used to store employee information.
Step 2: Configuration File (config.php
)
This file connects to the MySQL database using credentials for the localhost
, root
user, and a defined password. The connection is checked, and if successful, it allows the rest of the PHP pages to interact with the database.
Step 3: Display Data (index.php
)
This PHP script fetches all employee data from the employees
table and displays it in a Bootstrap-styled table. The data is displayed along with action icons for viewing, editing, or deleting records.
The page uses the DataTables library to provide additional features like search, sorting, and pagination. External libraries like Bootstrap and DataTables are linked in the <head>
section for styling and functionality.
Step 4: Custom Styles (style.css
)
Custom CSS is used to style buttons, tables, and other elements. Specific styles for table headers, action buttons, and export options are defined.
Step 5: Custom JavaScript (js.js
)
JavaScript is used to initialize the DataTable and enable exporting functionality (CSV, Excel, PDF, etc.) as well as custom translations for button text.
Additional Notes:
-
read.php
,update.php
, anddelete.php
: These files would be used for viewing, updating, and deleting employee data, although the actual implementation is not shown here. -
Export Options: You have buttons for exporting data in PDF, Excel, CSV formats, or printing.
-
Localization: The JavaScript includes Spanish translations for DataTable text like "Processing", "Show MENU records", etc.