Skip to content

Instantly share code, notes, and snippets.

@kaqfa
Last active December 19, 2016 10:32
Show Gist options
  • Save kaqfa/f4d030b2dd92490879c0651dd13c790b to your computer and use it in GitHub Desktop.
Save kaqfa/f4d030b2dd92490879c0651dd13c790b to your computer and use it in GitHub Desktop.
Kumpulan kode manajemen login dengan PDO (PHP Data Object)
CREATE TABLE `users` (
`id` int NOT NULL AUTO_INCREMENT PRIMARY KEY,
`username` varchar(50) NOT NULL,
`password` varchar(50) NOT NULL,
`full_name` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment