View Single Post
Old 07-26-2008, 08:43 PM   #1 (permalink)
Peuplarchie
The Acquainted
 
Peuplarchie's Avatar
 
Join Date: May 2008
Location: Québec
Posts: 104
Thanks: 10
Peuplarchie is on a distinguished road
Application Selfsubmit form problem

Good day to you all,
I'm working on a php text based login script.
I'm at building the script to add, delete or edit account.

Here my problem :
When I enter a name password, it add it twice to the txt file.
Also, it oly add the ame of the field and not it value.


Here's my code :

PHP Code:
<?php


$username 
$_POST['username'];
$password $_POST['password'];
$url $_POST['url'];

function 
add_user($user,$url,$pass)
{
    
$fopen fopen('info.text''a');
    
fwrite($fopen"\n,'".$user."' => '".$url."' => '".$pass."'");
    
fclose($fopen);
}

add_user('username','password','url');
?> 


<html>
   <body>
      <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
         <input type="text" name="username" />
         <input type="text" name="password" />
         <select name="url">
            <option value="Director/index.php">Director</option>
            <option value="Admin/index.php">Admin</option>
            <option value="User/index.php">User</option></select><br />

         <input type="submit" /><br />
         
         
      </form>
      
      
      Preview:<br />
      <?php if(isset($_POST['html'])) echo stripslashes($_POST['html']); ?>
      
      
      
      
   </body>
</html>

Thanks !
Take care !
__________________
That's why we are not alone on earth... let's build !
Peuplarchie is offline  
Reply With Quote