Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $username =$_POST['user'];
- $password =$_POST['pass'];
- if($username =='test' AND $password =='pass1'){
- echo "Wellcome $username";
- echo '<a href="2.php">Go to your download. </a>';
- }else{
- require 'loginform.php';
- echo "You must login!";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement