Arithmetic Operations, PHP Control Structures, Logical Expressions,php tutorial:  (adsbygoogle = window.adsbygoogle || []).push({}); Arithmetic Operations example code : <?php $a=30; $b=15; $a =$a+$b; //assigning variable $a to new value 45 echo $a.'this a is after assigning new variable a'.'<br>'; $total1=$a-$b;   //assigning variable $total1 to new value $a-$b and rest of them are same $total3=$a*$b; $total4=$a/$b; $total5=$a%$b; echo $total1.'<br>'; //showing the results ...
    what is PHP?     PHP is a server side scripting language. Now you may have thought that PHP was a     programming language. Well, technically speaking, it's not.     So how's a scripting language different from a programming language?     The distinction between them is largely artificial, and the lines can get a bit blurry.     But we can do a general comparison. A script only runs in response to an event.     It also usually runs a...
Example code for Loops pointers in php : (adsbygoogle = window.adsbygoogle || []).push({}); <html>    <head>        <title>Loops: pointers</title>    </head>    <body>    <?php             $ages = array(43, 84, 154, 146, 213, 142);    ?>    <?php                echo "1: "...
Example code of functions in php (adsbygoogle = window.adsbygoogle || []).push({});   <html>    <head>        <title>Functions2</title>    </head>    <body>    <?php       $bar = "outside";    function foo() {        global $bar;        $bar = "inside";    }    foo();     ...
 Example of Functions in php: (adsbygoogle = window.adsbygoogle || []).push({});   <html>    <head>        <title>Functions</title>    </head>    <body>       <?php        // a simple function example        function say_hello() {            echo "Hello World!<br />";   ...
Example of foreach loop in php (adsbygoogle = window.adsbygoogle || []).push({}); <html>    <head>        <title>Loops: foreach</title>    </head>    <body>        <?php        $ages = array(43, 83, 125, 126, 223, 242);    ?>    <?php        // using each value        foreach($ages...
Example of for loop in php : (adsbygoogle = window.adsbygoogle || []).push({}); <html>    <head>        <title>Loops: for</title>    </head>    <body>        <?php                for ($count=0; $count <= 10; $count++) {            echo $count . ", ";        }   ...
<html>    <head>        <title>Floating Point Numbers</title>    </head>    <body>        <?php                        $var1 = 3.14        ?>        <?php                      ...
 Example code for Loops  continue in php <html>    <head>        <title>Loops  continue</title>    </head>    <body>    <?php                for ($count=0; $count <= 10; $count++) {            if ($count == 5) {                continue;   ...
 Example of Constants in php <html>    <head>        <title>Constants</title>    </head>    <body>        <?php                                    $max_width = 980;                       ...
Code of loop break in php: <html>    <head>        <title>Loops  break</title>    </head>    <body>    <?php                 for ($count=0; $count <= 10; $count++) {            echo $count;            if ($count == 10) { break; }       ...
<html>    <head>        <title>Array Functions</title>    </head>    <body>        <?php $array1 = array(5,2,144,15,33,52); ?>        Count: <?php echo count($array1); ?><br />        Max value: <?php echo max($array1); ?><br />        Min value: <?php echo min($array1); ?><br />   ...
(adsbygoogle = window.adsbygoogle || []).push({}); Create a temperature converter in php : Here is the code for temperature converter in php    (adsbygoogle = window.adsbygoogle || []).push({}); <?php     function fahrenheit_to_celsius($given_value)     {         $celsius=5/9*($given_value-32);         return $celsius ;     }     function celsius_to_fahrenheit($given_value)    ...
Create a password generator by yourself in php: Here is the code for Create a password generator : (adsbygoogle = window.adsbygoogle || []).push({}); <?php   function generate_password($length)     {         $alpha=array('q','p','Z','o','R','*','&','@');         $password='';         for($i=1;$i<=$length;$i++)         {            ...
Create a simple calculator with php OOP: Create a file called calculator_view.php . Now paste the following code. (adsbygoogle = window.adsbygoogle || []).push({}); <?phprequire_once './classes/calculator.php';$obj= new Calculator();?><html>    <head>        <title>Loop Example</title>    </head>    <body>        <form action="calculator_view.php" method="post">           ...
Subscribe to RSS Feed Follow me on Twitter!