-
-
Save marcelod/8fabddad1ee16d79830f426de347f2ae to your computer and use it in GitHub Desktop.
Printing In PHP.
This file contains 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 | |
$var = print "Variable"; | |
?> | |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> | |
<p><?= "Value \$var = " . $var ?></p> | |
<p><?php echo "Value \$var = {$var}" ?></p> | |
</body> | |
</html> | |
<?php | |
echo $var; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment