Skip to content

sekolahprogram/crud-mysqli-oop-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CRUD MySQLi OOP PHP

Simpel crud dengan mysqli OOP php

Instalasi

Buatlah database dengan nama crud_mysqli_proc, kemudian buka sql dan pastekan kode dibawah ini.

CREATE TABLE `users` (
  `id` int(11) NOT NULL,
  `name` varchar(191) NOT NULL,
  `email` varchar(191) NOT NULL,
  `password` varchar(191) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;