Mohammad Towhidul Islam

    05-May-13 12:10:16 am

    Http w3schools com php phpsessions asp

    http://w3schools.com/php/php_sessions.asp...

    Read More


    Mohammad Towhidul Islam

    04-May-13 11:52:19 pm

    File1 php name jahidul islam echo a href file2 php

    //--------file1.php------------- <?php $name="Jahidul Islam"; echo "<a href='file2.php'>Go to File2</a> "; ?> //--------file2.php------------ <?php echo $name; echo "<a href='file3.php'>Delete session<...

    Read More


    Mohammad Towhidul Islam

    04-May-13 11:42:59 pm

    File1 php sessionstart sessionsname jahidul islam echo a href file2

    //--------file1.php------------- <?php session_start(); $_SESSION["s_name"]="Jahidul Islam"; echo "<a href='file2.php'>Go to File2</a> "; ?> //--------file2.php------------ <?php session_start(); echo $_SESSION["s...

    Read More


    Mohammad Towhidul Islam

    03-May-13 12:29:21 am

    Iteration foreach php names array rahim karim apel mahbub chirpy mamun

    Iteration: FOREACH <?php $names=array("Rahim","Karim","Apel","Mahbub","chirpy","Mamun"); foreach($names as $name){ echo $name."<br/>"; } ?>...

    Read More


    Mohammad Towhidul Islam

    03-May-13 12:24:45 am

    Iteration do while php i 1 do echo br while

    Iteration: DO-WHILE <?php $i=1; do{ echo $i."<br/>"; $i++; }while($i<10); ?>...

    Read More


    Mohammad Towhidul Islam

    03-May-13 12:24:04 am

    Iteration while php i 1 while 10 echo br

    Iteration: WHILE <?php $i=1; while($i<10){ echo $i."<br/>"; $i++; } ?>...

    Read More


    Mohammad Towhidul Islam

    03-May-13 12:23:23 am

    Iteration for php for i 1 10 echo br

    Iteration: FOR <?php for($i=1;$i<10;$i++){ echo $i."<br/>"; } ?>...

    Read More


    Mohammad Towhidul Islam

    03-May-13 12:14:41 am

    Switch case php key b switch case a echo fan break

    SWITCH-CASE <?php $key="b"; switch($key){ case "a": echo "Fan"; break; case "b": echo "Light"; break; default: echo "Unknown&...

    Read More


    Mohammad Towhidul Islam

    02-May-13 11:53:42 pm

    Php x 3 45 if 9 100 echo x is two

    <?php $x; $x=3; $x=45; if($x>9 && $x<100){ echo "X is two digit number "; }else{ echo "X is one digit number "; } ?>...

    Read More


    Mohammad Towhidul Islam

    02-May-13 11:50:29 pm

    Php x 3 9 echo

    <?php $x; $x=3; $x=9; echo $x; ?>...

    Read More


Copyright © 2024. Powered by Intellect Software Ltd