Results 1 to 10 of 40

Thread: Day 7 - Talk To Server - Become PHP Expert in 30 days

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Oct 2003
    Location
    Kochi, Kerala, India
    Posts
    21,389

    Default

    http://php.flashwebhost.com/vineesh/...ay_7_ex_1.html

    PHP Code:
    <html>
    <
    body>

    <
    h1>Welcome to GovtV.V.H.S.SKodamthuruth</h1>

    <
    form method="GET" action="student.php">

    Enter Student Name: <input name="student" type="text"><br />
    Select your class:
    <
    select name="class">
    <
    option>1</option>
    <
    option>2</option>
    <
    option>3</option>
    <
    option>4</option>
    <
    option>5</option>
    <
    option>6</option>
    <
    option>7</option>
    <
    option>8</option>
    <
    option>9</option>
    <
    option>10</option>
    <
    option>11</option>
    <
    option>12</option>
    </
    select> <br />
    Enter your division<input name="division" type="text"> <br />
    <
    button type="submit">Click here!</button>
    <
    button type="reset">Reset</button>

    </
    body>
    </
    html
    http://php.flashwebhost.com/vineesh/day7/student.php

    PHP Code:
    <?php

    $schoolName 
    'govt. v.v.h.s.s, kodamthuruth'

    echo 
    '<h1><font color=FB2E0A><u><I>Student Information</I></u></font></h1>';

    echo 
    'Hello ' '<font color=D10A0A><b>' $_GET['student'] . '</font></b>' '!.  You are studying at ' '<font color=099A3C><b>' strtoupper($schoolName) . '</b></font>' ' and You are in ' '<font color=071486><b>' $_GET['class'] . '</font></b>' 'th standard ' '<font color=071486><b>' $_GET['division'] . '</font></b>' ' division.';

  2. #2
    Join Date
    Oct 2003
    Location
    Kochi, Kerala, India
    Posts
    21,389

    Default

    http://php.flashwebhost.com/vineesh/day7/day_7_ex_4.php

    PHP Code:
    <?php

    if (isset($_GET['name'])) {
    echo 
    ucwords('<font color="red"><b>Hello ' $_GET[name] . '. </b></font>' '<font color="red"><b> your informations successfully submitted.</b></font> ');
    } else {
    echo 
    '

    <html>
    <body>

    <h1 align=center>Enter your family members details</h1>

    <form method="GET" action="day_7_ex_4.php">

    <table width=50% align=center border=0>
    <tr>
    <td>Enter Your name: </td>
    <td><input type="text" name="name"></td>
    </tr>

    <tr>
    <td>Enter Your father name:</td>
    <td> <input type="text" name="fname"></td>
    </tr>

    <tr>
    <td>Enter Your mother name: </td>
    <td><input type="text" name="mname"></td>
    </tr>

    <tr>
    <td>Enter Your email: </td>
    <td><input type="text" name="email"></td>
    </tr>

    <tr>
    <td>Enter Your Address: </td>
    <td> <textarea type="text" name="address"></textarea></td>
    </tr>

    <tr>
    <td>&nbsp;</td>
    <td><button type="submit">Submit</button> &nbsp; <button type="reset">Reset</button></td>
    </tr>

    </table>

    </form>

    </body>
    </html>'
    ;
    }

  3. #3
    Join Date
    Jan 2008
    Location
    india,kerala-god's own country
    Posts
    14,007

    Default

    DAY 7 PHP PROGRAMMING

    http://php.flashwebhost.com/ramesh/d...et_method1.php

    PHP Code:
    <?php
      
      
    if (isset($_GET['login'])) {
        echo 
    '<h1>Login Success!!</h1>';
        echo 
    '<br>';
        echo 
    '<pre>';
        
    print_r($_GET);
        echo 
    '</pre>';

    else {
        echo 
    '

    <style>
    body {    
        background: #464646;
        font: 14px;
        font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    }
    .form {
        width: 250px;
        height:230px;
        background: #fff;
        color: #777;    
    }


    .formtitle {
        padding: 10px;
        line-height: 16px;
        font-size: 13px;    
        color: #000;
        font-weight: bold;
        border-bottom: 1px solid #eb8d19;
        width: 230px;
        }


    .inputtextbox {
        width: 200px;
        margin-bottom: 10px;
        margin: 20px;
        overflow: hidden;
    }
    .inputtext {    
        line-height: 18px;    
        width: 120px;
    }

    .buttons {
        background: #f1f1f1;
        border-top: 1px solid #ddd;
        padding: 15px;
        height: 34px;
    }
    </style>
    <html>
    <body>
    <form class="form" method="GET" action="loginsuccess.php">

                <div class="formtitle">Login to your account</div>

                <div class="inputtextbox">
                    <div class="inputtext">Username: </div>
                    <div class="inputcontent">

                        <input type="text" />

                    </div>
                </div>

                <div class="inputtextbox">
                    <div class="inputtext">Password: </div>
                    <div class="inputcontent">
                        <input type="password" />
                        <br/>

                    </div>
                </div>

                <div class="buttons">

                    <input type="submit" value="Login" />

                    <input type="submit" value="Cancel" />

                </div>

            </form>

            </body>
    </html>

    '
    ; }





    http://php.flashwebhost.com/ramesh/d...ginsuccess.php

    PHP Code:
    <?php

    echo '<font color=green><h1>Login Success.........................<h1></font>';


    echo 
    '<br>
    <html>
    <body>
    <div> 
    <form action="get_method1.php">
    <input type="submit" value="Logout" />
    </form>
    </div>
    </body>
    </html>'

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •