Monday, August 22, 2016

How to Write Echo and Print Statement in PHP?

Echo and Print Statement

Echo is a print statement which is used for getting output. Both are more less same.

The code of Echo are –

<?php

echo " <h2> How to use Echo script </h2>";
echo " This is lutfar rahman learning echo programm<br>";
echo " This is lutfar's rahman learning echo programm <br>";
echo "This", "is lutfar's rahman", "learning echo", "programm";

?>



Result:
How to use Echo script
This is lutfar rahman learning echo programm
This is lutfar's rahman learning echo programm
Thisis lutfar's rahmanlearning echoprogramm


Echo with variables

<?php

$echovariable1 = "How to study genrat Echo script";
$echovariable2 = " This is lutfar rahman learning echo programm";
$echovariable3 = " This is lutfar's rahman learning echo programm";
$echovariable4 = 200;
$echovariable5 = 300;

echo " <h2> $echovariable1 </h2>";
echo " Hello $echovariable2<br>";
echo " $echovariable3 <br>";
echo $echovariable4 + $echovariable5;

?>


Result:

Hello This is lutfar rahman learning echo programm
This is lutfar's rahman learning echo programm
500


PHP print Statement.

PHP print statement can be written without and with parentheses. E.g. print or print()

Print Code:

<?php

print " <h2> How to use Echo script </h2>";
print " This is lutfar rahman learning echo programm<br>";
print " This is lutfar's rahman learning echo programm <br>";

?>


Print code result:

How to use Echo script
This is lutfar rahman learning echo programm
This is lutfar's rahman learning echo programm


Print statement with variable

<?php

$echovariable1 = "How to study genrat Echo script";
$echovariable2 = " This is lutfar rahman learning echo programm";
$echovariable3 = " This is lutfar's rahman learning echo programm";
$echovariable4 = 200;
$echovariable5 = 300;

print " <h2> $echovariable1 </h2>";
print " Hello $echovariable2<br>";
print " $echovariable3 <br>";
print $echovariable4 + $echovariable5;

?>


Result :

How to study genrat Echo script
Hello This is lutfar rahman learning echo programm
This is lutfar's rahman learning echo programm
500


By Autogarment is best ERP Software seller in Bangladesh



No comments:

Post a Comment