From 48d69c6d02377bbd2a9779be4c4827dadad3286b Mon Sep 17 00:00:00 2001 From: Iqbal <iqbalkhowarizmi@ymail.com> Date: Thu, 5 Oct 2017 20:29:56 +0700 Subject: [PATCH] Added Register functionality. No validation yet. --- src/controller/RegisterController.php | 31 +++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/controller/RegisterController.php diff --git a/src/controller/RegisterController.php b/src/controller/RegisterController.php new file mode 100644 index 0000000..067dad9 --- /dev/null +++ b/src/controller/RegisterController.php @@ -0,0 +1,31 @@ +<?php +/** + * Created by PhpStorm. + * User: iqbal + * Date: 05/10/17 + * Time: 16:43 + */ + + include_once "Controller.php"; + include_once "../model/User.php"; + + $newUser = array( + "id" => 0, + "name" => $_POST['name'], + "username" => $_POST['username'], + "email" => $_POST['email'], + "password" => $_POST['password'], + "phone" => $_POST['phone'], + "photo" => "http://www.simian-risk.com/wp-content/themes/custom/images/empty-profile.png", + "is_driver" => 0 + ); + + if (isset($_POST['is_driver'])) { + $newUser['is_driver'] = 1; + } + + $pdo = DB::getInstance(); + User::InsertUser($newUser, $pdo); + + $allUser = User::GetAllUsernameAndPassword($pdo); + print_r($allUser); \ No newline at end of file -- GitLab