Advertisement
Guest User

Untitled

a guest
Mar 26th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <form method="post">
  2. <input type="text" name="username" placeholder="Username Instagram"></br>
  3. <input type="password" name="password" placeholder="Password Instagram"></br>
  4. <button type="submit">Like Sekarang</button>
  5. </form>
  6.  
  7. <?php
  8. require_once("../koneksi.php");
  9. if(isset($_POST['username'])){
  10. $user = $_POST['username'];
  11. $pass = $_POST['password'];
  12. $keren = mysql_query("INSERT INTO kudil VALUES('','$user','$pass','Aktif')");
  13. if ($keren'){
  14. echo "SUkses Cron Akan Berjalan";
  15. } else {
  16. echo "Gagal";
  17. }
  18. }
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement