Guest User

yurike

a guest
Nov 3rd, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.80 KB | None | 0 0
  1. <?php
  2.  
  3. $nama = [
  4. ];
  5.  
  6. $utang = [
  7.     array('email'=>"[email protected]"),array('email'=>'[email protected]'),array('email'=>'[email protected]')
  8. ];
  9.  
  10. $email_utang = [];
  11.  
  12. foreach($utang as $item){
  13.     array_push($email_utang,$item['email']);
  14. }
  15.  
  16. print_r($email_utang);
  17.  
  18. ?>
  19.  
  20. <!DOCTYPE html>
  21. <html>
  22. <head>
  23.     <meta charset="utf-8">
  24.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  25.     <title></title>
  26.     <link rel="stylesheet" href="">
  27. </head>
  28. <body>
  29.     <select name="" multiple>
  30.         <?php foreach($nama as $item){
  31.             if(!in_array($item, $email_utang)){
  32.                 ?>
  33.                 <option value="<?php echo $item;?>"><?php echo $item;?></option>
  34.                 <?php
  35.             }
  36.         }
  37.         ?>
  38.     </select>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment