Mohammad Towhidul Islam

    29-Apr-13 12:42:50 am

    Php if isset getbtnsubmit name gettxtname age gettxtage echo hi

    <?php if(isset($_GET["btnSubmit"])){ $name=$_GET["txtName"]; $age=$_GET["txtAge"]; echo "Hi, ".$name.". Your age is ".$age; } ?> <form action="#" method="get"> <div>Name<br/> <input type=...

    Read More


    Mohammad Towhidul Islam

    28-Apr-13 11:45:20 pm

    Static variable php function demo static count 0 here is static

    Static variable: <?php function demo(){ STATIC $count=0; //here $count is static variable $count++; echo $count; } demo(); demo(); demo(); ?>...

    Read More


    Mohammad Towhidul Islam

    28-Apr-13 11:41:35 pm

    Function parameter php y 34 here is global variable function demo

    Function parameter: <?php $y=34; //here $y is global variable function demo($a,$b){ //here $a and $b is function parameter $x=54; echo $x; //here $x is local variable because it is inside the function } ?>...

    Read More


    Mohammad Towhidul Islam

    28-Apr-13 11:39:56 pm

    Global variable php y 34 here is global function demo x

    Global variable: <?php $y=34; //here $y is global variable function demo(){ $x=54; echo $x; //here $x is local variable because it is inside the function } ?>...

    Read More


    Mohammad Towhidul Islam

    28-Apr-13 11:38:11 pm

    Local variable php function demo x 54 echo here is local

    Local variable: <?php function demo(){ $x=54; echo $x; //here $x is local variable because it is inside the function } ?>...

    Read More


    Mohammad Towhidul Islam

    28-Apr-13 11:34:53 pm

    Variable scope 1 local variable 2 function parameters 3 global variables 4 static variables

    Variable Scope: 1. Local variable 2. Function parameters 3. Global variables 4. Static variables...

    Read More


    Mohammad Towhidul Islam

    28-Apr-13 11:29:17 pm

    Thisthat counter 4word

    $This&that $!counter $4word...

    Read More


    Mohammad Towhidul Islam

    28-Apr-13 11:26:05 pm

    Identifier is a general term applied to variables functions and various

    Identifier: Identifier is a general term applied to variables, functions, and various other user-defined objects....

    Read More


    Mir Mahbubur Rahman

    28-Apr-13 11:22:03 am

    Sir 1st one html then 2nd javascript and 3th php what

    sir,1st one HTML, then 2nd Javascript ,AND= 3th "PHP".what can we are start PHP with out javascript ?...

    Read More


    Mohammad Towhidul Islam

    27-Apr-13 12:13:55 am

    Next topics 1 juggling 2 identifiers 3 variable and scope

    Next Topics : 1. Juggling 2. Identifiers 3. Variable and Variable Scope...

    Read More


Copyright © 2024. Powered by Intellect Software Ltd