Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fadhilhakim/data-mahasiswa
Aplikasi Sederhana (latihan PHP & MySQL & Tailwind)
https://github.com/fadhilhakim/data-mahasiswa
crud crud-application crud-sample data-mahasiswa mahasiswa php web
Last synced: 7 days ago
JSON representation
Aplikasi Sederhana (latihan PHP & MySQL & Tailwind)
- Host: GitHub
- URL: https://github.com/fadhilhakim/data-mahasiswa
- Owner: Fadhilhakim
- Created: 2024-12-03T13:16:07.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-03T14:29:01.000Z (about 1 month ago)
- Last Synced: 2024-12-03T14:47:55.888Z (about 1 month ago)
- Topics: crud, crud-application, crud-sample, data-mahasiswa, mahasiswa, php, web
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Aplikasi CRUD sederhana
![Thumbnail](https://github.com/user-attachments/assets/82ac2b1e-6289-4784-900e-17f9b9fe04ec)
![Thumbnai2](https://github.com/user-attachments/assets/035309eb-1b24-4536-b82d-05a703da156e)
![PHP](https://img.shields.io/badge/-PHP-777bb3?style=flat-square&logo=PHP&logoColor=white)
![HTML5](https://img.shields.io/badge/-HTML5-e34f26?style=flat-square&logo=HTML5&logoColor=white)
![MySQL](https://img.shields.io/badge/-MySQL-4479a1?style=flat-square&logo=mysql&logoColor=white)## Tech stack
- Bootsrap Icon v1.11.3
- TailwindCSS v3.4.13
- MySQL v8.0.30## How to use :
- Configure Connection koneksi.php
```koneksi.php
alert('Gagal tersambung dengan database.')");
}
?>
```
- Create Database
``` Query
CREATE DATABASE `akademik` /*!40100 COLLATE 'armscii8_bin' */;
USE `akademik`;
CREATE TABLE `mahasiswa` (
`id` INT(6) NOT NULL AUTO_INCREMENT,
`nama` TEXT(50) NOT NULL,
`nim` INT(6) NOT NULL DEFAULT 0,
`alamat` TEXT(255) NOT NULL,
PRIMARY KEY (`id`)
)
COLLATE='armscii8_bin';
```