Digging in JavaScript
-Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum.
- -diff --git a/website/inc/ProtoModel.php b/website/inc/ProtoModel.php new file mode 100644 index 0000000..70ad315 --- /dev/null +++ b/website/inc/ProtoModel.php @@ -0,0 +1,31 @@ +con->prepare($value); + $result = $stmt->execute(); + return $result; + } + + public function insert($value,$db=null){ + $stmt = $this->con->prepare($value); + $result = $stmt->execute(); + return $result; + } + + public function save($value,$db=null){ + $stmt = $this->con->prepare($value); + $result = $stmt->execute(); + return $result; + } +} + +$proto = new ProtoModel(); +$proto->update("UPDATE users SET username = 'byebye' WHERE id = '2'"); diff --git a/website/inc/db.php b/website/inc/db.php new file mode 100644 index 0000000..f168bc5 --- /dev/null +++ b/website/inc/db.php @@ -0,0 +1,24 @@ +con = $dbh = new PDO("mysql:host=$this->DbHost;dbname=$this->DbName", $this->DbUser, $this->DbPass); + $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + } + + public function insert($value,$db=null){ + $stmt = $this->con->prepare($value); + $result = $stmt->execute(); + return $result; + } +} + +$db = new Database(); diff --git a/website/index.php b/website/index.php index a1e17b7..6a71c1d 100644 --- a/website/index.php +++ b/website/index.php @@ -1,231 +1,8 @@ is_loggedin()) -{ - $user->redirect('home.php'); -} +require_once("inc/db.php"); +require_once("inc/Protomodel.php"); -?> - - -
- - - - - - -Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum.
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -Lorem Ipsum is simply a dummy text of the vast wonder of the world. Maybe, that’s a lie but it...
- -