lecture 36

 <?php



?>
<!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>Document</title>
</head>

<body>


    <form>

        <center>

            <input type="text" name="username">
            <button>Submit</button>
        </center>
    </form>

    <?php

    $userName = $_GET['username'];
    echo $userName

    //int
    //string
    //float
    //bool
    //array
    //function
    //ass array

    // $fname = "bilal Javed";
    // echo "<center>";
    // echo $fname;

    // echo "</center>";



    // function sum(){

    // }

    // if(){

    // }
    // elseif(){

    //
    ?>



</body>

</html>

Comments