Page 4 of 4 FirstFirst ... 234
Results 31 to 40 of 40

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

  1. #31
    Join Date
    Feb 2007
    Posts
    26,214

    Default

    DAY 7 PHP PROGRAMMING

    http://php.flashwebhost.com/tom/day_7_ex_2.html

    Code:
    <html>
    <body>
    
    
    <h1>Welcome to Online Booking Center</h1>
    
    
    <p>Please enter you name below and click that button to see Online Booking Center.</p>
    
    
    <form method="GET" action="day_7_ex_2.php">
    
    
    Enter Your Name: <input name= "full_name" type="text">
    
    
    <button type="Submit">Enter Your Name</button>
    
    
    </form>
    
    
    </body>
    </html>
    http://php.flashwebhost.com/tom/day_7_ex_2.php

    Code:
    <?php
    
    
    echo '<h1>Hello '. $_GET['full_name'] . ' ! Welcome to Online Booking Center </h1>';

  2. #32
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    Quote Originally Posted by image View Post
    DAY 7 PHP PROGRAMMING

    http://php.flashwebhost.com/tom/day_7_ex_2.html

    Code:
    <html>
    <body>
    
    
    <h1>Welcome to Online Booking Center</h1>
    
    
    <p>Please enter you name below and click that button to see Online Booking Center.</p>
    
    
    <form method="GET" action="day_7_ex_2.php">
    
    
    Enter Your Name: <input name= "full_name" type="text">
    
    
    <button type="Submit">Enter Your Name</button>
    
    
    </form>
    
    
    </body>
    </html>
    http://php.flashwebhost.com/tom/day_7_ex_2.php

    Code:
    <?php
    
    
    echo '<h1>Hello '. $_GET['full_name'] . ' ! Welcome to Online Booking Center </h1>';

    Good, working properly.
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  3. #33
    Join Date
    Feb 2007
    Posts
    26,214

    Default

    DAY 7 PHP PROGRAMMING

    http://php.flashwebhost.com/tom/day_7_ex_3.php

    Code:
    <?php
    
    
    if (isset($_GET ['email'])) {
    
    
    echo '<h1>Hello ' . $_GET['email'] . '! Welcome to Webmail</h1>' ;
    
    
    echo '<pre>';
    
    
    print_r($_GET);
    
    
    echo '</pre>';
    
    
    } else {
    
    
    echo'
    
    
    <html>
    
    
    <body>
    
    
    <h1>Welcome to Webmail</h1>
    
    
    <p>Please enter your email id and password below</p>
    
    
    <form method="GET" action = "day_7_ex_3.php">
    
    
    Enter Your Email: <input name = "email" type="text"><br>
    
    
    Enter Your Password: <input name = "password" type="text">
    
    
    <button type="Submit">Enter</button>
    
    
    </form>
    
    
    </body>
    </html>';
    
    
    }

  4. #34
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    Quote Originally Posted by image View Post
    DAY 7 PHP PROGRAMMING

    http://php.flashwebhost.com/tom/day_7_ex_3.php

    Code:
    <?php
    
    
    if (isset($_GET ['email'])) {
    
    
    echo '<h1>Hello ' . $_GET['email'] . '! Welcome to Webmail</h1>' ;
    
    
    echo '<pre>';
    
    
    print_r($_GET);
    
    
    echo '</pre>';
    
    
    } else {
    
    
    echo'
    
    
    <html>
    
    
    <body>
    
    
    <h1>Welcome to Webmail</h1>
    
    
    <p>Please enter your email id and password below</p>
    
    
    <form method="GET" action = "day_7_ex_3.php">
    
    
    Enter Your Email: <input name = "email" type="text"><br>
    
    
    Enter Your Password: <input name = "password" type="text">
    
    
    <button type="Submit">Enter</button>
    
    
    </form>
    
    
    </body>
    </html>';
    
    
    }


    Good.

    Code:
    Enter Your Password: <input name = "password" type="text">
    No space needed before and after =

    Code:
    Enter Your Password: <input name="password" type="text">
    This will be better. If you change type="text" to type="password", it will show * when you type a character.
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  5. #35
    Join Date
    Apr 2005
    Posts
    46,704

    Default

    Code:
     <?php
    
    if (isset($_GET['blood_group'])) {
        echo '<h1>Your Blood Group is , ' . $_GET['blood_group'] . '! Welcome to Rotary Blood Bank.</h1>';
    } else {
    
    echo '
    <html>
    <body>
    
    <h1>Welcome to Blood Donation Group.</h1>
    
    <p>Please enter you name  and blood group below and click that button to enter website.</p>
    
    <form method="GET" action="login.php">
        Enter Your Name: <input name="name" type="text">  <br> <br>
        Enter Your Blood Gourp : <input name="blood_group" type="text">
        <button type="submit">Enter Web Site</button>
    </form>
    
    </body>
    </html>';
    
    }
    http://php.flashwebhost.com/mini/login.php

  6. #36
    Join Date
    Sep 2003
    Posts
    3,040

    Default

    Quote Originally Posted by minisoji View Post
    Code:
     <?php
    
    if (isset($_GET['blood_group'])) {
        echo '<h1>Your Blood Group is , ' . $_GET['blood_group'] . '! Welcome to Rotary Blood Bank.</h1>';
    } else {
    
    echo '
    <html>
    <body>
    
    <h1>Welcome to Blood Donation Group.</h1>
    
    <p>Please enter you name  and blood group below and click that button to enter website.</p>
    
    <form method="GET" action="login.php">
        Enter Your Name: <input name="name" type="text">  <br> <br>
        Enter Your Blood Gourp : <input name="blood_group" type="text">
        <button type="submit">Enter Web Site</button>
    </form>
    
    </body>
    </html>';
    
    }
    http://php.flashwebhost.com/mini/login.php

    Why asked name... if you have no use for it ?

    Find

    Code:
        echo '<h1>Your Blood Group is , ' . $_GET['blood_group'] . '! Welcome to Rotary Blood Bank.</h1>';
    Replace with

    Code:
        echo '<h1>Hello ' . $_GET['name'] . '. Your Blood Group is , ' . $_GET['blood_group'] . '! Welcome to Rotary Blood Bank.</h1>';
    Become PHP Expert in 30 days
    FreeMarriage.com - Free Online Matrimonial
    FlashWebHost.com - Professional Web Hosting, Designing.

  7. #37
    Join Date
    Apr 2005
    Posts
    46,704

    Default

    code corrected. http://php.flashwebhost.com/mini/login_1.php

    Code:
     <?php
    
    if (isset($_GET['blood_group'])) {
         echo '<h1> Hello ' . $_GET['name'] . ' . Your Blood Group is , ' .  $_GET['blood_group'] . '! Welcome to Rotary Blood Bank.</h1>' ;
    } else {
    
    echo '
    <html>
    <body>
    
    <h1>Welcome to Blood Donation Group.</h1>
    
    <p>Please enter you name  and blood group below and click that button to enter website.</p>
    
    <form method="GET" action="login_1.php">
        Enter Your Name: <input name="name" type="text">  <br> <br>
        Enter Your Blood Gourp : <input name="blood_group" type="text">
        <button type="submit">Enter Web Site</button>
    </form>
    
    </body>
    </html>';
    
    }

  8. #38
    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.';

  9. #39
    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>'
    ;
    }

  10. #40
    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>'

Page 4 of 4 FirstFirst ... 234

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
  •