Skip to content

Instantly share code, notes, and snippets.

@flaviors200
Last active May 14, 2019 14:08
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 flaviors200/3755ce3f6b4420fa194e24d7c4c48e96 to your computer and use it in GitHub Desktop.
Save flaviors200/3755ce3f6b4420fa194e24d7c4c48e96 to your computer and use it in GitHub Desktop.
Variables
<?php
$name = 'Flavio';
$age = 36;
$_country = 'Italia';
$car1 = 'Clio';
echo "Il mio nome è $name, vivo in $_country, ho $age anni e guido una $car1";
//Output: Il mio nome è Flavio, vivo in Italia, ho 36 anni e guido una Clio
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment