diff --git a/www/public/Moment-0/evaluate.php b/www/public/Moment-0/evaluate.php
index 1be99d9..91bf30c 100644
--- a/www/public/Moment-0/evaluate.php
+++ b/www/public/Moment-0/evaluate.php
@@ -7,8 +7,8 @@
+
+
+
+ Filhantering Läs
+
+
+getAnvändarnamn() == $användarnamn && $user->getLösenord() == $lösenord) {
+ echo('Välkommen ' . $user->getFörnamn() . " " . $user->getEfternamn());
+ break;
+ }
+ }
+ }
+?>
+
+
\ No newline at end of file
diff --git a/www/public/Moment-2/FeetBook/cleanData.php b/www/public/Moment-2/FeetBook/cleanData.php
new file mode 100644
index 0000000..d80117c
--- /dev/null
+++ b/www/public/Moment-2/FeetBook/cleanData.php
@@ -0,0 +1,25 @@
+
+
+
+
+
+ Document
+
+
+
+
+
\ No newline at end of file
diff --git a/www/public/Moment-2/FeetBook/start.php b/www/public/Moment-2/FeetBook/start.php
new file mode 100644
index 0000000..552269e
--- /dev/null
+++ b/www/public/Moment-2/FeetBook/start.php
@@ -0,0 +1,63 @@
+
+
+
+
+
+ FeetBook
+
+
+ FeetBook
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/www/public/Moment-2/FeetBook/user.php b/www/public/Moment-2/FeetBook/user.php
new file mode 100644
index 0000000..d72afa1
--- /dev/null
+++ b/www/public/Moment-2/FeetBook/user.php
@@ -0,0 +1,36 @@
+förnamn = $förnamn;
+ $this->efternamn = $efternamn;
+ $this->användarnamn = $användarnamn;
+ $this->lösenord = $lösenord;
+ }
+
+ public function getFörnamn() {
+ return $this->förnamn;
+ }
+
+ public function getEfternamn() {
+ return $this->efternamn;
+ }
+
+ public function getAnvändarnamn() {
+ return $this->användarnamn;
+ }
+
+ public function getLösenord() {
+ return $this->lösenord;
+ }
+
+ public function setLösenord($lösenord) {
+ $this->lösenord = $lösenord;
+ }
+}
+?>
diff --git a/www/public/Moment-2/Upg1/strip_tag.php b/www/public/Moment-2/Upg1/strip_tag.php
new file mode 100644
index 0000000..19705df
--- /dev/null
+++ b/www/public/Moment-2/Upg1/strip_tag.php
@@ -0,0 +1,16 @@
+
+
+
+
+
+ Document
+
+
+ World
", "
");
+ echo("I en strip_tags används , efter för att deklerera vilka taggar som tillåts.
+ Det som är farligt med detta är att man kan skicka över taggar som kan vara skadliga och användas i XSS-attacker");
+ include("../../footer.html");
+ ?>
+
+
\ No newline at end of file
diff --git a/www/public/Moment-2/Upg2/räknare.php b/www/public/Moment-2/Upg2/räknare.php
new file mode 100644
index 0000000..d584fc6
--- /dev/null
+++ b/www/public/Moment-2/Upg2/räknare.php
@@ -0,0 +1,16 @@
+
+
+
+
+
+ Document
+
+
+
+
+
\ No newline at end of file
diff --git a/www/public/Moment-2/Upg3/foreacharray.php b/www/public/Moment-2/Upg3/foreacharray.php
new file mode 100644
index 0000000..bef752a
--- /dev/null
+++ b/www/public/Moment-2/Upg3/foreacharray.php
@@ -0,0 +1,19 @@
+
+
+
+
+
+ Document
+
+
+ Välkommen";
+ $page["main"] = "Detta är innehållet på min sida
";
+ $page["footer"] = "
Min sidfoot
";
+ foreach($page as $key => $value) {
+ echo($key . ":" . $value . "
");
+ }
+ include("../../footer.html");
+ ?>
+
+
\ No newline at end of file
diff --git a/www/public/Moment-2/Upg4/beräkning.php b/www/public/Moment-2/Upg4/beräkning.php
new file mode 100644
index 0000000..dbb81e9
--- /dev/null
+++ b/www/public/Moment-2/Upg4/beräkning.php
@@ -0,0 +1,26 @@
+
+
+
+
+
+ Document
+
+
+";
+ echo "Differansen av 4 och 1 är $sum
";
+ echo "Produkten av 2 och 5 är $prod
";
+ echo "Kvoten av 2 och 5 är $divi";
+
+ include("../../footer.html");
+?>
+
+
\ No newline at end of file
diff --git a/www/public/Moment-2/Upg4/math.php b/www/public/Moment-2/Upg4/math.php
new file mode 100644
index 0000000..2c8f0c2
--- /dev/null
+++ b/www/public/Moment-2/Upg4/math.php
@@ -0,0 +1,31 @@
+
+
+
+
+
+ Document
+
+
+
+
+
\ No newline at end of file
diff --git a/www/public/Moment-2/index.php b/www/public/Moment-2/index.php
new file mode 100644
index 0000000..efbbb8d
--- /dev/null
+++ b/www/public/Moment-2/index.php
@@ -0,0 +1,18 @@
+
+
+
+
+
+ Document
+
+
+ Upg1
+ Upg2
+ Upg3
+ Upg4
+ FeetBook
+
+
+
\ No newline at end of file
diff --git a/www/public/index.php b/www/public/index.php
index aa8fdb2..68839f6 100644
--- a/www/public/index.php
+++ b/www/public/index.php
@@ -8,5 +8,6 @@
Moment-0
Moment-1
+ Moment-2