Skip to content

Instantly share code, notes, and snippets.

View flaviors200's full-sized avatar

Flavio Biscaldi flaviors200

View GitHub Profile
@flaviors200
flaviors200 / hello-world.php
Last active May 10, 2019 00:37
Hello World!
<?php
echo "Hello World!";
@flaviors200
flaviors200 / hello-world-html.php
Last active May 10, 2019 00:38
Hello World! with HTML formatting
<html>
<body>
<strong>
<?php
echo "Hello World!";
?>
</strong>
</body>
</html>
@flaviors200
flaviors200 / oop-example.php
Last active May 7, 2019 00:25
Hello World!
<?php
class Person
{
private $name;
private $lastname;
public __construct($name = null, $lastname = null)
{
$this->name = $name;