Jump to content

Aurorius

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Posts posted by Aurorius

  1. ^ IIANM, php automatically converts constants to string if no declaration is found.. but you should put the single quote to identify it as a string.

    Use this code just to be safe
    [code]
    <form name="login" method="post" action="<?=$_SERVER['PHP_SELF']?>">
    [/code]

    and use this code to retrieve your data coz you set your form method property to POST

    [code]
    <?php
    $username = $_POST['login_username'];
    $password  = $_POST['login_password']
    ?>
    [/code]
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.