diff --git a/README.md b/README.md
index 3e5f00c..0095c26 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,5 @@
-practise
-========
-this repo contains the things that i have practise.
\ No newline at end of file
+# PHP practise code of @codeanit
+
+> TODO:
+> This will be streamlined for better usage.
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/Client.php b/SandersW-LearningPHPDesignPatterns/proxy/Client.php
new file mode 100644
index 0000000..b5f3aba
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/Client.php
@@ -0,0 +1,30 @@
+tableMaster="proxy_log";
+ $this->hookup=UniversalConnect::doConnect();
+ $this->un=$this->hookup->real_escape_string(trim($_POST['uname']));
+ $this->pw=$this->hookup->real_escape_string(trim($_POST['pw']));
+
+ $this->getIface($this->proxy=new Proxy());
+ }
+ private function getIface(ISubject $proxy)
+ {
+ $proxy->login($this->un,$this->pw);
+ }
+}
+$worker=new Client();
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/ConnectClient.php b/SandersW-LearningPHPDesignPatterns/proxy/ConnectClient.php
new file mode 100644
index 0000000..f50c058
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/ConnectClient.php
@@ -0,0 +1,19 @@
+hookup=UniversalConnect::doConnect();
+}
+}
+$worker=new ConnectClient();
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/CreateTable.php b/SandersW-LearningPHPDesignPatterns/proxy/CreateTable.php
new file mode 100644
index 0000000..85203cb
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/CreateTable.php
@@ -0,0 +1,44 @@
+tableMaster="proxyLog";
+ $this->hookup=UniversalConnect::doConnect();
+ $drop = "DROP TABLE IF EXISTS $this->tableMaster";
+ if($this->hookup->query($drop) === true)
+ {
+ printf("Old table %s has been dropped.
",$this->tableMaster);
+ }
+ echo $sql = "CREATE TABLE $this->tableMaster (uname NVARCHAR(15),
+ pw NVARCHAR(120)"; die;
+ print_r($this->hookup->query($sql)); die;
+ if($this->hookup->query($sql) === true)
+ {
+ echo "Table $this->tableMaster has been created successfully.
";
+ }
+ $this->hookup->close();
+ }
+}
+ $worker=new CreateTable();
+
+
+ /*
+ * use proxy_practise;
+CREATE TABLE IF NOT EXISTS `proxy_log` (
+ `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
+ `uname` varchar(11) NOT NULL,
+ `pw` varchar(11) NOT NULL,
+ PRIMARY KEY (`id`)
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8 CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=1;
+ */
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/HashRegister.php b/SandersW-LearningPHPDesignPatterns/proxy/HashRegister.php
new file mode 100644
index 0000000..78bfd6c
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/HashRegister.php
@@ -0,0 +1,34 @@
+tableMaster="proxy_log";
+$this->hookup=UniversalConnect::doConnect();
+$username=$this->hookup->real_escape_string(trim($_POST['uname']));
+$pwNow=$this->hookup->real_escape_string(trim($_POST['pw']));
+$sql = "INSERT INTO $this->tableMaster (uname,pw) VALUES ('$username',
+md5('$pwNow'))";
+if($this->hookup->query($sql))
+{
+echo "Registration completed:";
+}
+elseif ( ($result = $this->hookup->query($sql))===false )
+{
+printf("Invalid query: %s
Whole query: %s
",
+ $this->hookup->error, $sql);
+exit();
+}
+$this->hookup->close();
+}
+}
+$worker=new HashRegister();
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/IConnectInfo.php b/SandersW-LearningPHPDesignPatterns/proxy/IConnectInfo.php
new file mode 100644
index 0000000..fd5145a
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/IConnectInfo.php
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/Proxy.php b/SandersW-LearningPHPDesignPatterns/proxy/Proxy.php
new file mode 100644
index 0000000..089af72
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/Proxy.php
@@ -0,0 +1,60 @@
+logGood=false;
+//Choose table and connect
+$this->tableMaster="proxy_log";
+$this->hookup=UniversalConnect::doConnect();
+//Create MySQL statement
+$sql = "SELECT pw FROM $this->tableMaster WHERE uname='$uname'";
+if($result=$this->hookup->query($sql))
+{
+$row=$result->fetch_array(MYSQLI_ASSOC);
+
+if($row['pw']== substr($pw, 0, 11))
+{
+$this->logGood=true;
+}
+$result->close();
+}
+elseif ( ($result = $this->hookup->query($sql))===false )
+{
+printf("Failed: %s
", $this->hookup->error);
+exit();
+}
+$this->hookup->close();
+if($this->logGood)
+{
+$this->request();
+}
+else{
+echo "Username and/or Password not on record.";
+}
+}
+public function request()
+{
+$this->realSubject=new RealSubject();
+$this->realSubject->request();
+}
+}
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/RealSubject.php b/SandersW-LearningPHPDesignPatterns/proxy/RealSubject.php
new file mode 100644
index 0000000..efa7d50
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/RealSubject.php
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+PHP Tip Sheet:
+For OOP Developers
+
+- Program to the interface and not the implementation.
+- Encapsulate your objects.
+ - Favor composition over class inheritance.
+- A class should only have a single responsibility.
+
+
+
+REQUEST;
+echo $practice;
+}
+}
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/UniversalConnect.php b/SandersW-LearningPHPDesignPatterns/proxy/UniversalConnect.php
new file mode 100644
index 0000000..3ca9132
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/UniversalConnect.php
@@ -0,0 +1,34 @@
+CREATE TABLE proxyLog (uname NVARCHAR(15),
+ pw NVARCHAR(120)
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/login.html b/SandersW-LearningPHPDesignPatterns/proxy/login.html
new file mode 100644
index 0000000..5659a8d
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/login.html
@@ -0,0 +1,24 @@
+
+
+
+
+Proxy Login
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/Client.php b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/Client.php
new file mode 100644
index 0000000..b5f3aba
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/Client.php
@@ -0,0 +1,30 @@
+tableMaster="proxy_log";
+ $this->hookup=UniversalConnect::doConnect();
+ $this->un=$this->hookup->real_escape_string(trim($_POST['uname']));
+ $this->pw=$this->hookup->real_escape_string(trim($_POST['pw']));
+
+ $this->getIface($this->proxy=new Proxy());
+ }
+ private function getIface(ISubject $proxy)
+ {
+ $proxy->login($this->un,$this->pw);
+ }
+}
+$worker=new Client();
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/ConnectClient.php b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/ConnectClient.php
new file mode 100644
index 0000000..f50c058
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/ConnectClient.php
@@ -0,0 +1,19 @@
+hookup=UniversalConnect::doConnect();
+}
+}
+$worker=new ConnectClient();
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/CreateTable.php b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/CreateTable.php
new file mode 100644
index 0000000..85203cb
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/CreateTable.php
@@ -0,0 +1,44 @@
+tableMaster="proxyLog";
+ $this->hookup=UniversalConnect::doConnect();
+ $drop = "DROP TABLE IF EXISTS $this->tableMaster";
+ if($this->hookup->query($drop) === true)
+ {
+ printf("Old table %s has been dropped.
",$this->tableMaster);
+ }
+ echo $sql = "CREATE TABLE $this->tableMaster (uname NVARCHAR(15),
+ pw NVARCHAR(120)"; die;
+ print_r($this->hookup->query($sql)); die;
+ if($this->hookup->query($sql) === true)
+ {
+ echo "Table $this->tableMaster has been created successfully.
";
+ }
+ $this->hookup->close();
+ }
+}
+ $worker=new CreateTable();
+
+
+ /*
+ * use proxy_practise;
+CREATE TABLE IF NOT EXISTS `proxy_log` (
+ `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
+ `uname` varchar(11) NOT NULL,
+ `pw` varchar(11) NOT NULL,
+ PRIMARY KEY (`id`)
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8 CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=1;
+ */
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/HashRegister.php b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/HashRegister.php
new file mode 100644
index 0000000..78bfd6c
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/HashRegister.php
@@ -0,0 +1,34 @@
+tableMaster="proxy_log";
+$this->hookup=UniversalConnect::doConnect();
+$username=$this->hookup->real_escape_string(trim($_POST['uname']));
+$pwNow=$this->hookup->real_escape_string(trim($_POST['pw']));
+$sql = "INSERT INTO $this->tableMaster (uname,pw) VALUES ('$username',
+md5('$pwNow'))";
+if($this->hookup->query($sql))
+{
+echo "Registration completed:";
+}
+elseif ( ($result = $this->hookup->query($sql))===false )
+{
+printf("Invalid query: %s
Whole query: %s
",
+ $this->hookup->error, $sql);
+exit();
+}
+$this->hookup->close();
+}
+}
+$worker=new HashRegister();
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/IConnectInfo.php b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/IConnectInfo.php
new file mode 100644
index 0000000..fd5145a
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/IConnectInfo.php
@@ -0,0 +1,17 @@
+
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/Proxy.php b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/Proxy.php
new file mode 100644
index 0000000..089af72
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/Proxy.php
@@ -0,0 +1,60 @@
+logGood=false;
+//Choose table and connect
+$this->tableMaster="proxy_log";
+$this->hookup=UniversalConnect::doConnect();
+//Create MySQL statement
+$sql = "SELECT pw FROM $this->tableMaster WHERE uname='$uname'";
+if($result=$this->hookup->query($sql))
+{
+$row=$result->fetch_array(MYSQLI_ASSOC);
+
+if($row['pw']== substr($pw, 0, 11))
+{
+$this->logGood=true;
+}
+$result->close();
+}
+elseif ( ($result = $this->hookup->query($sql))===false )
+{
+printf("Failed: %s
", $this->hookup->error);
+exit();
+}
+$this->hookup->close();
+if($this->logGood)
+{
+$this->request();
+}
+else{
+echo "Username and/or Password not on record.";
+}
+}
+public function request()
+{
+$this->realSubject=new RealSubject();
+$this->realSubject->request();
+}
+}
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/RealSubject.php b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/RealSubject.php
new file mode 100644
index 0000000..efa7d50
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/RealSubject.php
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+PHP Tip Sheet:
+For OOP Developers
+
+- Program to the interface and not the implementation.
+- Encapsulate your objects.
+ - Favor composition over class inheritance.
+- A class should only have a single responsibility.
+
+
+
+REQUEST;
+echo $practice;
+}
+}
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/UniversalConnect.php b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/UniversalConnect.php
new file mode 100644
index 0000000..3ca9132
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/UniversalConnect.php
@@ -0,0 +1,34 @@
+CREATE TABLE proxyLog (uname NVARCHAR(15),
+ pw NVARCHAR(120)
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/login.html b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/login.html
new file mode 100644
index 0000000..5659a8d
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/login.html
@@ -0,0 +1,24 @@
+
+
+
+
+Proxy Login
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/proxy.css b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/proxy.css
new file mode 100644
index 0000000..af9bfdd
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/proxy.css
@@ -0,0 +1,32 @@
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : Mar 20, 2014, 4:07:05 PM
+ Author : Anit Shrestha
+*/
+
+@charset "UTF-8";
+/* CSS Document */
+/*EFECCA,046380,002F2F */
+body {
+margin-left:20px;
+font-family:Verdana, Geneva, sans-serif;
+background-color:#EFECCA;
+}
+header {
+ font-family: "Arial Black", Gadget, sans-serif;
+font-size:24px;
+color:#002F2F;
+}
+#entry {
+font-size:11;
+color:#046380;
+}
+.subhead
+{
+font-size:16px;
+font-family:Verdana, Geneva, sans-serif;
+}
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/proxy.html b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/proxy.html
new file mode 100644
index 0000000..aed4aff
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy-login/proxy.html
@@ -0,0 +1,24 @@
+
+
+
+
+
+Username/Password Registration
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy.css b/SandersW-LearningPHPDesignPatterns/proxy/proxy.css
new file mode 100644
index 0000000..af9bfdd
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy.css
@@ -0,0 +1,32 @@
+/*
+To change this license header, choose License Headers in Project Properties.
+To change this template file, choose Tools | Templates
+and open the template in the editor.
+*/
+/*
+ Created on : Mar 20, 2014, 4:07:05 PM
+ Author : Anit Shrestha
+*/
+
+@charset "UTF-8";
+/* CSS Document */
+/*EFECCA,046380,002F2F */
+body {
+margin-left:20px;
+font-family:Verdana, Geneva, sans-serif;
+background-color:#EFECCA;
+}
+header {
+ font-family: "Arial Black", Gadget, sans-serif;
+font-size:24px;
+color:#002F2F;
+}
+#entry {
+font-size:11;
+color:#046380;
+}
+.subhead
+{
+font-size:16px;
+font-family:Verdana, Geneva, sans-serif;
+}
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/proxy/proxy.html b/SandersW-LearningPHPDesignPatterns/proxy/proxy.html
new file mode 100644
index 0000000..aed4aff
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/proxy/proxy.html
@@ -0,0 +1,24 @@
+
+
+
+
+
+Username/Password Registration
+
+
+
+
+
+
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/Client.php b/SandersW-LearningPHPDesignPatterns/strategy/Client.php
new file mode 100644
index 0000000..e57ba1a
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/Client.php
@@ -0,0 +1,37 @@
+algorithm();
+}
+public function findData()
+{
+$context=new Context(new SearchData());
+$context->algorithm();
+}
+public function showAll()
+{
+$context=new Context(new DisplayData());
+$context->algorithm();
+}
+public function changeData()
+{
+$context=new Context(new UpdateData());
+$context->algorithm();
+}
+public function killer()
+{
+$context=new Context(new DeleteRecord());
+$context->algorithm();
+}
+}
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/Context.php b/SandersW-LearningPHPDesignPatterns/strategy/Context.php
new file mode 100644
index 0000000..d6fcc1a
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/Context.php
@@ -0,0 +1,21 @@
+strategy = $strategy;
+}
+public function algorithm()
+{
+$this->strategy->algorithm();
+}
+}
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/DataEntry.php b/SandersW-LearningPHPDesignPatterns/strategy/DataEntry.php
new file mode 100644
index 0000000..48db4a1
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/DataEntry.php
@@ -0,0 +1,18 @@
+real_escape_string($_POST['data']);
+echo "This data has been entered: " . $test . "
";
+}
+}
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/DeleteRecord.php b/SandersW-LearningPHPDesignPatterns/strategy/DeleteRecord.php
new file mode 100644
index 0000000..8b94b75
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/DeleteRecord.php
@@ -0,0 +1,19 @@
+real_escape_string($_POST['data']);
+echo "The record " . $test . "has been deleted.
";
+}
+}
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/DisplayData.php b/SandersW-LearningPHPDesignPatterns/strategy/DisplayData.php
new file mode 100644
index 0000000..c01f5f7
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/DisplayData.php
@@ -0,0 +1,18 @@
+";
+}
+}
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/IConnectInfo.php b/SandersW-LearningPHPDesignPatterns/strategy/IConnectInfo.php
new file mode 100644
index 0000000..61cd2d8
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/IConnectInfo.php
@@ -0,0 +1,18 @@
+
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/IStrategy.php b/SandersW-LearningPHPDesignPatterns/strategy/IStrategy.php
new file mode 100644
index 0000000..7095fc5
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/IStrategy.php
@@ -0,0 +1,13 @@
+
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/SearchData.php b/SandersW-LearningPHPDesignPatterns/strategy/SearchData.php
new file mode 100644
index 0000000..5de1682
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/SearchData.php
@@ -0,0 +1,19 @@
+real_escape_string($_POST['data']);
+echo "Here's what you were looking for " . $test . "
";
+}
+}
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/UniversalConnect.php b/SandersW-LearningPHPDesignPatterns/strategy/UniversalConnect.php
new file mode 100644
index 0000000..3463d9c
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/UniversalConnect.php
@@ -0,0 +1,32 @@
+";
+}
+elseif (mysqli_connect_error(self::$hookup))
+{
+echo('Here is why it failed: ' . mysqli_connect_error());
+}
+return self::$hookup;
+}
+}
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/UpdateData.php b/SandersW-LearningPHPDesignPatterns/strategy/UpdateData.php
new file mode 100644
index 0000000..bc62e5a
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/UpdateData.php
@@ -0,0 +1,18 @@
+real_escape_string($_POST['data']);
+echo "Your new data is now " . $test . "
";
+}
+}
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/displayTrigger.php b/SandersW-LearningPHPDesignPatterns/strategy/displayTrigger.php
new file mode 100644
index 0000000..b15e6da
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/displayTrigger.php
@@ -0,0 +1,15 @@
+showAll();
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/findTrigger.php b/SandersW-LearningPHPDesignPatterns/strategy/findTrigger.php
new file mode 100644
index 0000000..8a568d2
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/findTrigger.php
@@ -0,0 +1,15 @@
+findData();
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/insertTrigger.php b/SandersW-LearningPHPDesignPatterns/strategy/insertTrigger.php
new file mode 100644
index 0000000..e364b33
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/insertTrigger.php
@@ -0,0 +1,16 @@
+insertData();
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/killTrigger.php b/SandersW-LearningPHPDesignPatterns/strategy/killTrigger.php
new file mode 100644
index 0000000..9c1a5ac
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/killTrigger.php
@@ -0,0 +1,16 @@
+killer();
+?>
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/strategy.html b/SandersW-LearningPHPDesignPatterns/strategy/strategy.html
new file mode 100644
index 0000000..3ad5462
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/strategy.html
@@ -0,0 +1,41 @@
+
+
+
+
+Test
+
+
+Insert
+
+
+Find Data
+
+
+Display All Data
+
+
+Update Data
+
+
+Delete Record
+
+
+
\ No newline at end of file
diff --git a/SandersW-LearningPHPDesignPatterns/strategy/updateTrigger.php b/SandersW-LearningPHPDesignPatterns/strategy/updateTrigger.php
new file mode 100644
index 0000000..424c110
--- /dev/null
+++ b/SandersW-LearningPHPDesignPatterns/strategy/updateTrigger.php
@@ -0,0 +1,15 @@
+changeData();
+?>
\ No newline at end of file
diff --git a/stripe-php b/stripe-php
deleted file mode 160000
index 8d618cb..0000000
--- a/stripe-php
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 8d618cb4a090771edd2195c2f27b84746f98cb22