Skip to content

Instantly share code, notes, and snippets.

@marcelod
Forked from tiagoporto/printing.php
Created May 25, 2023 14:12
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 marcelod/8fabddad1ee16d79830f426de347f2ae to your computer and use it in GitHub Desktop.
Save marcelod/8fabddad1ee16d79830f426de347f2ae to your computer and use it in GitHub Desktop.
Printing In PHP.
<?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