Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Week_1/Day_1/Exercises/array/modify_array.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,19 @@
* 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",
"James Dallas"
];

print_r($teachers);

echo "this is my change";

?>
</p>
Expand Down
3 changes: 3 additions & 0 deletions Week_1/Day_1/Exercises/array/remove_array.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
];

print_r($teachers);


echo "this is another change";

?>
</p>
Expand Down
1 change: 1 addition & 0 deletions Week_2/Day_1/Challenges/easy.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<?php

// code goes here ...
echo "my code went here";

?>
</p>
Expand Down