Answers for "print in php"

PHP
4

Difference between echo and print statement in php

Source link:
https://www.programmingquest.com/2019/04/difference-between-echo-and-print.html

1. echo Statement
* we can write echo statement with parenthesis like 'echo()' or without parenthesis 'echo'.
* In the echo we can pass multiple variable in comma separated form to see the output like 'echo $a,$b,$c;'
* echo doesn’t return any value
* echo is faster then print

2. Print Statement
* we can write print statement with parenthesis like 'print()' or without parenthesis 'print'.
* In the print we can not pass multiple variable in comma separated form like echo.
* print statement always returns 1.
* print is slower than echo
Posted by: Guest on April-13-2020
0

how to make a print text in php

<html>
<body>

<?php
$txt1 = "test";
$txt2 = "test";
$x = num;
$y = num;

print "<h2>" . $txt1 . "</h2>";
print "test " . $txt2 . "<br>";
print $x + $y;
?>

</body>
</html>
Posted by: Guest on September-22-2021
0

php print

<?php

$modulo="DWES";

print "<p>Módulo: $modulo</p>"

?>
Posted by: Guest on October-10-2021
0

php print

printf("El número PI vale %+.2f", 3.1416); // +3.14
Posted by: Guest on October-10-2021
0

php print

<?php

$ciclo="DAW";

$modulo="DWES";

print "<p>";

printf("%s es un módulo de %d curso de %s", $modulo, 2, $ciclo);

print "</p>";

?>
Posted by: Guest on October-10-2021
0

php print

$txt_pi = sprintf("El número PI vale %+.2f", 3.1416);
Posted by: Guest on October-10-2021

Browse Popular Code Answers by Language