Advertisement
LrdArc

Lrdc Framework - Form Example | intip.in/formphp

Dec 11th, 2015
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. Download framework disini --> https://github.com/cscpro/lrdc-fw
  2.  
  3. <?php
  4.  
  5. if ( $_POST ) {
  6.     // Validating
  7.     if ( ! $_POST['bla1'] ) echo 'Bla1 belum dimasukkan!';
  8.     else {
  9.         // Insert to SQL
  10.         $db->i( 'table_name', 'nama,alamat,bla1', array( $_POST['nama'], $_POST['alamat'], $_POST['bla1'] ) );
  11.         echo 'Berhasil dimasukkan!';
  12.  
  13.         // Redirect to homepaage
  14.         header( 'Location: /' );
  15.     }
  16. }
  17.  
  18. ?>
  19. <form method="post">
  20.     <input type="text" name="nama" placeholder="bla 1">
  21.     <input type="text" name="alamat" placeholder="bla 1">
  22.     <input type="text" name="bla1" placeholder="bla 1">
  23. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement