Advertisement
Guest User

test

a guest
Jul 17th, 2016
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. <?php
  2. include 'connection.php';
  3. ?>
  4. <html>
  5. <head>
  6. <title>Login</title>
  7. <link rel="stylesheet" type="text/css" href="style/account-style.css">
  8. </head>
  9. <body>
  10. <div class="wrapper-input" align="center">
  11. <div class="box-input" >
  12. <div class="title-box">
  13. Daftar
  14. </div>
  15. <div class="content-box">
  16. <form method="post" action="">
  17. <input type="text" name="txt_name" class="txt" placeholder="Nama Lengkap">
  18. <input type="text" name="txt_email" class="txt" placeholder="Email">
  19. <input type="text" name="txt_username" class="txt" placeholder="Username">
  20. <input type="password" name="txt_password" class="txt" placeholder="Password">
  21. <input type="submit" name="btn_register" class="btn-input" value="Daftar">
  22. </form>
  23. <?php
  24. @$txt_name = $_POST['txt_name'];
  25. @$txt_email = $_POST['txt_email'];
  26. @$txt_username = $_POST['txt_username'];
  27. @$txt_password = $_POST['txt_password'];
  28. @$btn_register = $_POST['btn_register'];
  29. if($btn_register){
  30. if($txt_name=="" || $txt_email=="" || $txt_username=="" || $txt_password==""){
  31. echo "Mohon Lengkapi Form";
  32. } else {
  33. $q_insert = mysql_query("INSERT INTO tbl_user SET nama_user='$txt_name', email_user='$txt_email', username_user='$txt_username', password_user='$txt_password'") or die(mysql_error());
  34.  
  35. if($q_insert){
  36. echo "Pendaftaran Berhasil";
  37. } else {
  38. echo "Pendaftaran Gagal";
  39. }
  40. }
  41. }
  42.  
  43. ?>
  44. </div>
  45. <div class="text-box">
  46. Sudah Punya Akun? <a href="login.php">Login</a>
  47. </div>
  48. </div>
  49. <div class="footer-box">
  50. <a href="../lks">Home</a>
  51. <br>
  52. &copy; 2015 Richy-Tech
  53. </div>
  54. </div>
  55. </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement