Types of Operators in PHP

Program 1

<html>
    <head><title>My First PHP Application</title>
    <body>
     <center>
  
<?php

     $a=30; 
     $b=10;
    //  echo($a + $b);// 40
    //  echo "<br>";
    //  echo($a - $b);/20
    //  echo "<br>";
    //  echo($a * $b);//300
    //  echo "<br>";
    //  echo($a/$b); //3 
    //  echo "<br>";
    //  echo($a%$b);  //
     //echo( 15%2);
     $a=4;
     echo ($a**3);
     echo "<br>";
/* 
    $a=12/4
    
    $b=13%2

*/ 



?>
</center>
</body>
</html>

 

courses

TechVidvan Team

TechVidvan Team provides high-quality content & courses on AI, ML, Data Science, Data Engineering, Data Analytics, programming, Python, DSA, Android, Flutter, full stack web dev, MERN, and many latest technology.

Leave a Reply

Your email address will not be published. Required fields are marked *