diff --git a/Week_1/Day_1/Exercises/array/modify_array.php b/Week_1/Day_1/Exercises/array/modify_array.php index cfc752a..44b8282 100644 --- a/Week_1/Day_1/Exercises/array/modify_array.php +++ b/Week_1/Day_1/Exercises/array/modify_array.php @@ -9,6 +9,10 @@ * you have array and lets say we got this data from the DB so we cant change it when getting it from the DB * so writing the correct syntax needed to fix each teacher's name */ + + $seth = "is awesome"; + + //this is a comment $teachers = [ "Josph Backer", "Aric Schwartzenegger", @@ -16,6 +20,8 @@ ]; print_r($teachers); + + echo "this is my change"; ?>

diff --git a/Week_1/Day_1/Exercises/array/remove_array.php b/Week_1/Day_1/Exercises/array/remove_array.php index 1392bbe..093c31c 100644 --- a/Week_1/Day_1/Exercises/array/remove_array.php +++ b/Week_1/Day_1/Exercises/array/remove_array.php @@ -19,6 +19,9 @@ ]; print_r($teachers); + + + echo "this is another change"; ?>

diff --git a/Week_2/Day_1/Challenges/easy.php b/Week_2/Day_1/Challenges/easy.php index 5b3096d..d025267 100644 --- a/Week_2/Day_1/Challenges/easy.php +++ b/Week_2/Day_1/Challenges/easy.php @@ -27,6 +27,7 @@