diff --git a/src/controller/RegisterController.php b/src/controller/RegisterController.php
new file mode 100644
index 0000000000000000000000000000000000000000..067dad9bd86d192b39aca9b37a54e6a7cbccc30b
--- /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