Results 1 to 10 of 40

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

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #9
    Join Date
    Nov 2004
    Location
    India
    Posts
    65

    Default

    http://php.flashwebhost.com/stefin/facebook_signin.php

    Code:
    <?php
    
    if (isset($_GET['signin'])) {
    
    echo 'THANK YOU FOR JOINING FACEBOOK';
    
    }
    
    else {
    
    echo '
    
    <html>
    <body>
    
    <h1>Welcome To Facebook</h1>
    
    <h2>Its Free And Always Will Be</h2>
      
    <form action="welcome.php" method="GET">
    
    Enter First Name : <input name="first name" type="text">
    
    </form>
    
    ';}
    
    {
    
    echo '
    
    <form action="welcome.php" method="GET">
    
    Enter Last Name : <input name="last name" type="text">
    
    
    
    </form>
    
    ';}
    
    {
    
    echo '
    
    <form action="welcome.php" method="GET">
    
    Enter Your Email : <input name="email" type="text">
    
    
    </form>
    
    ';}
    
    {
    
    echo '
    
    
    <form action="welcome.php" method="GET">
    
    Re-Enter Your Email : <input name="re-enter email" type="text">
    
    
    
    </form>
    
    ';}
    
    {
    
    echo '
    
    <form action="welcome.php" method="GET">
    
    Enter Your Password : <input name="password" type="text">
    
    
    
    </form>
    
    ';}
    
    {
    
    echo '
    
    <form action="welcome.php" method="GET">
    
    Enter Your Birthday : <input name="birthday" type="text">
    
    <h2><button type="SIGN UP"> SIGN UP </button></h2>
    
    </form>
    
    </body>
    </html>
    
    ';}
    Last edited by stefin; 05-16-2014 at 03:06 PM.

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
  •