Skip to content

Instantly share code, notes, and snippets.

@domantasg
Created September 9, 2017 07:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save domantasg/deed73a74895b92b2f5fd9c41265397e to your computer and use it in GitHub Desktop.
Save domantasg/deed73a74895b92b2f5fd9c41265397e to your computer and use it in GitHub Desktop.
// Variables
$my_name = "Liam Carbery";
// Functions
function display_my_name($name) {
echo $name;
}
// Clases
class Persons_Profile
{
public $name;
 public function __construct()
{
[...]
}
 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment