Skip to content
Binary file added Gif_image.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 12 additions & 10 deletions hello-world.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
<?php
//
// This is only a SKELETON file for the "Hello World" exercise.
// It's been provided as a convenience to get you started writing code faster.
//
function helloWorld($name = "") {
if ($name == "") {
return "Hello, World!";
} else {
return "Hello," . " " . $name;
}
}

//
// This is only a SKELETON file for the "Hello World" exercise.
// It's been provided as a convenience to get you started writing code faster.
//

function helloWorld($name)
{
//
// YOUR CODE GOES HERE
//
}
?>
8 changes: 8 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
body {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can remove this file and the cute image, which are now useless 😉!


text-align: center;
}
strong {
font-size: 34px;
color: green;
}