Table of Contents
php echo/print statement in hindi
php में echo और print दोनों ही statement output को display करने के लिए इस्तेमाल होते है| echo और print statement में थोड़ी similarity और different बी है|
echo statement में multiple parameter सेट कर सकते है जब की print statement में एक ही parameter रख सकता है यही echo statement, print statement से fast बी है|
php echo statement को perentheses echo() के साथ और उसके बिना echo बी लिख सकते है||
use echo statement with text
<?php
echo "<p>php echo/print statement</p>";
echo "hello world <br>";
echo "hello i am visitor";
echo "hello", "same","how","are you", "??";
?>
use echo statement with variables
<?php
$var1 = "hello echo/print with variable";
$var2 = "hello i am new visitor";
$a = 3;
$b = 4;
$c= $a + $b;
echo $var1;
echo $var2;
echo $var2.”no”.$a;
echo $c;
?>