Answers for "php echo statement"

7

How to show php text

<?php
  echo "Hello World!";
// You can also do this with a variable:
$YourVariable = "Hello World!";
echo $YourVariable;
?>
Posted by: Guest on July-11-2020
4

echo php

<?php 
$string = "Hello, World!";
echo $string;
?>
Posted by: Guest on October-06-2020
1

how to show rext in php

<?php
  $hello = "HELO";
  echo "hello";
	if (youwantvar = on) {
    echo $hello
    }
  
  
  ?>
Posted by: Guest on December-29-2019
0

php echo statement

echo "hello"
Posted by: Guest on June-22-2021
0

PHP echo and print Statements

<?php

 echo "<h2>PHP is Fun!</h2>";

 echo "Hello world!<br>";
echo "I'm about to learn PHP!<br>";

 echo "This ", "string ", "was ", "made ", "with multiple parameters.";

?>
Posted by: codeinu com on February-12-2022

Browse Popular Code Answers by Language