Posts

If, Else and Else If Statements

Image
  <! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   http-equiv = "X-UA-Compatible"   content = "IE=edge" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Php Tuts </ title > </ head > < style > * {      margin :  0 ;      padding :  0 ;      box-sizing :  border-box ; } .container {      max-width :  80% ;      background-color :  cyan ;      margin :  auto ;      padding :  23px ; } </ style > < body >      < div   class = "container" >      < h1 > Let's...

DataTypes

Image
How TO Make a Constant?          define ( 'PI' ,  3.1428 );          echo  PI Datatypes :         // 1. String         // 2. Float         // 3. Integer         // 4. Bollean         // 5. Array         // 6. Object         $var = "This is a string";         echo var_dump($var);         echo "<br>";                  $var = 64;         echo var_dump($var);         echo "<br>";                  $var = 6.4;         echo var_dump($var);         echo "<br>";                  $var = true;   ...

Operators

<! DOCTYPE   html > < html   lang = "en" > < head >      < meta   charset = "UTF-8" >      < meta   name = "viewport"   content = "width=device-width, initial-scale=1.0" >      < title > Learning Php </ title > </ head > < body >      < div   class = "container" >      < h4 > This is my first php website </ h4 >      < br >      <?php          // echo "Hello this is php";          $var1  =  2 ;          $coma  =  6 ;          // echo $var1;          //...

Variables

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Learning Php</title> </head> <body>     <div class="container">     This is my first php website     <?php         echo "Hello this is php";         $var1 = 23 ;         $coma = 12;         echo $var1;         echo $coma;         echo $coma + $var1     ?>     </div> </body> </html>

Adding Comments

 <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <title>Learning Php</title> </head> <body>     <div class="container">     This is my first php website     <?php         echo "Hello this is php";         // Single line comment         /*          This         is          a          multi         line         comment         */     ?>     </div> </body> </html>