How to echo HTML in PHP ? Last Updated : 12 Jul, 2025 Comments Improve Suggest changes Like Article Like Report While making a web application with PHP, we often need to print or echo few results in form of HTML. We can do this task in many different ways. Some of methods are described here: Using echo or print: PHP echo or print can be used to display HTML markup, javascript, text or variables. Example 1: This example uses PHP echo to display the result. php <?php $name = "GeeksforGeeks"; echo "<h1>Hello User, </h1> <p>Welcome to {$name}</p>"; ?> Output: Example 2: This example uses PHP print to display the result. php <?php $name = "GeeksforGeeks"; print "<h1>Hello User, </h1> <p>Welcome to {$name}</p>"; ?> Output : Using echo shorthand or separating HTML: PHP echo shorthand can be used to display the result of any expression, value of any variable or HTML markup. Example 1: This example uses PHP echo shorthand to display the result. PHP <?php $name = "GeeksforGeeks"; ?> <?= "<h1>Hello User,</h1> <h1>{$name} welcomes you</h1>" ?> Output: Example 2: Separating HTML from PHP CPP <?php $num = 2; for ($i = 1; $i <= 10; $i++) { ?> <p><?= $num ?> * <?= $i ?> = <?= $num * $i ?></p> <?php } ?> Output: Using heredoc: We can use <<< heredoc to print the html. <<< must be followed by an identifier and line break. The same identifier is used to close the body of heredoc. Syntax: <<<GFG // HTML Markup GFG; Note: The ending identifier must not be indented. Example: php <?php echo <<<GFG <h1>GeeksforGeeks</h1> <p>I am in heredoc with identifier 'GFG' .</p> GFG; ?> Output: PHP is a server-side scripting language designed specifically for web development. You can learn PHP from the ground up by following this PHP Tutorial and PHP Examples. Comment More infoAdvertise with us I iamvineettiwari Follow Improve Article Tags : Web Technologies PHP PHP Programs PHP-basics Explore PHP Tutorial 8 min read BasicsPHP Syntax 4 min read PHP Variables 5 min read PHP | Functions 8 min read PHP Loops 4 min read ArrayPHP Arrays 5 min read PHP Associative Arrays 4 min read Multidimensional arrays in PHP 5 min read Sorting Arrays in PHP 4 min read OOPs & InterfacesPHP Classes 2 min read PHP | Constructors and Destructors 5 min read PHP Access Modifiers 4 min read Multiple Inheritance in PHP 4 min read MySQL DatabasePHP | MySQL Database Introduction 4 min read PHP Database connection 2 min read PHP | MySQL ( Creating Database ) 3 min read PHP | MySQL ( Creating Table ) 3 min read PHP AdvancePHP Superglobals 6 min read PHP | Regular Expressions 12 min read PHP Form Handling 4 min read PHP File Handling 4 min read PHP | Uploading File 3 min read PHP Cookies 9 min read PHP | Sessions 7 min read Like