Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <?php
  2. if(isset($_POST['username']) && isset($_POST['filmLink']) && isset($_POST['serieLink']) && isset($_POST['host']) && isset($_POST['bddName'])
  3. isset($_POST['bddUser']) && isset($_POST['bddPass'])) {
  4.  
  5. $username = $_POST['username'];
  6. $filmLink = $_POST['filmLink'];
  7. $serieLink = $_POST['serieLink'];
  8. $host = $_POST['host'];
  9. $bddName = $_POST['bddName'];
  10. $bddUser = $_POST['bddUser'];
  11. $bddPass = $_POST['bddPass'];
  12.  
  13. header('Location: ./install/importation.php');
  14.  
  15. } else {
  16. print("<center>Veuillez verifier les champs.</center>");
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement