Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.62 KB | None | 0 0
  1. Tambahin dibawah: $options = getopt('', array('up', 'down', 'database', 'help'));
  2.  
  3. $get_conf = $_POST['opt'];
  4.  
  5. if ($get_conf == 'up') {
  6.     $options['up'] = true;
  7.  
  8. } else if ($get_conf == 'down') {
  9.     $options['down'] = true;
  10.  
  11. } else if ($get_conf == 'database') {
  12.     $options['database'] = true;
  13.  
  14. } else if ($get_conf == 'help') {
  15.     $options['help'] = true;
  16. }
  17.  
  18. Bikin 1 file baru namanya apa aja yang penting .html ato .php isinya
  19.  
  20. <form method="post" action="cobaa.php">
  21.     <input type="text" name="opt" />
  22.     <input type="submit" />
  23. </form>
  24.  
  25. cobaa.php itu adalah isi dari kodingan php cmd yang lu punya tadi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement