Last active
August 30, 2017 19:56
-
-
Save mayomi1/11d471c9f63d34d8503645e9af9aaa9a to your computer and use it in GitHub Desktop.
php tutorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$varible = “hello from the other side”; | |
$variable1 = “I must have called a thousand times”; | |
echo $variable | |
echo $variable1 | |
echo “$variable $variabel1”; | |
echo $variabel.’ ‘ . $variable; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment