Jump to content
php.lv forumi

Elemntārs piemērs ar vienkāršu prblēmu


IT_sausinsh

Recommended Posts

Pareizrakstība! Varbūt pamēģini šādi (zemāk), varbūt ies:

 

  <?php

    if (!isset($_POST['submit'])

    {

?>

    <h1>Lūdzu ielogojies!</h1>

    Tālāk tikai reģistrētiem lietotājiem!

    <form method="post" action="secret.php">

    <table border = 1>

    <tr>

        <th>Lietotājvārds</th>

        <td><input type="text" name="name"></td>

    </tr>

    <tr>

        <th>Parole</th>

        <td><input type="password" name="password"></td>

  </tr>

    <tr>

        <td colspan=2 align =center>

        <input type="submit" value="Ieiet">

        </td>

    </tr>

    </table>

    </form>

<?php

    }

    else if ($_POST['name']=="vars" && $_POST['password']=="paro")

    {

  echo "<h1>Te nu tas ir</h1>";

    echo "Viss turpinās!";

    }

    else

    {

    echo "<h1>Ej prom!</h1>";

    echo "Tev te nav ko darīt";

    }

    ?>

Link to comment
Share on other sites

×
×
  • Create New...