Jump to content

garces

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

garces's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. // I think you have to create a file which willl be your page form /*save this as [b]input.html[/b] */ <form method="post" action="display.php">   <label>Logged in as:   <input type="text" name="username" value="<?php echo $name; ?>"/>   </label> </form> //then create another file and save as display.php which will be your script <?php         $username=$_POST['username'];         echo "Logged In as ".$username; ?>
×
×
  • 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.