Advertisement
ujiajah1

cek-resi.php

May 13th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 6.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="">
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1">
  7.         <title>Cek Resi Anda</title>
  8.  
  9.         <!-- Bootstrap CSS -->
  10.         <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
  11.  
  12.         <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  13.         <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  14.         <!--[if lt IE 9]>
  15.             <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.2/html5shiv.min.js"></script>
  16.             <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
  17.         <![endif]-->
  18.     </head>
  19.     <body>
  20.         <div class="container">
  21.             <h2 align="center">Cek Nomor Resi JNE & TIKI</h2>
  22.             <hr>
  23.             <div class="col-lg-4">
  24.                 <div class="panel panel-success">
  25.                     <div class="panel-heading">Cek Resi Anda</div>
  26.                     <div class="panel-body">
  27.                         <form action="" method="POST">
  28.                             <div class="form-group">   
  29.                                 <label for="" class="control-label">Nomor Resi</label>
  30.                                 <input type="text" class="form-control" name="resi" required>
  31.                             </div>
  32.                             <div class="form-group">
  33.                                 <label for="" class="control-label" >Jasa Pengiriman</label>
  34.                                 <select name="jasa" id="" class="form-control" required>
  35.                                     <option value="">-- Pilih Jasa Pengiriman -- </option>
  36.                                     <option value="jne">JNE</option>
  37.                                     <option value="tiki">TIKI</option>
  38.                                 </select>
  39.                             </div>
  40.                     </div>
  41.                     <div class="panel-footer">
  42.                         <button type="submit" name="cek" class="btn btn-primary">Cek Resi</button>
  43.                     </div>
  44.                     </form>
  45.                 </div>
  46.             </div>
  47.             <div class="col-lg-8">
  48.                 <?php  
  49.                     if (isset($_POST['cek']))
  50.                     {
  51.                         $resi = isset($_POST['resi'])?$_POST['resi']:"";
  52.                         $jasa = isset($_POST['jasa'])?$_POST['jasa']:"";
  53.  
  54.                         $ambil_content = file_get_contents("http://ibacor.com/api/cek-resi?pengirim=".$jasa."&resi=".$resi."");
  55.  
  56.                         $result = json_decode($ambil_content, true);
  57.  
  58.                         //ambil data
  59.  
  60.                         //date
  61.  
  62.                         if ($result['status'] == "success")
  63.                         {
  64.                             $detail = $result['data']['detail'];
  65.                             $riwayat = $result['data']['riwayat'];
  66.  
  67.                         ?>
  68.                         <div class="panel panel-info">
  69.                             <div class="panel-heading">Hasil Pencarian Nomor Resi Anda</div>
  70.                             <div class="panel-body">
  71.                                 <legend>Detail </legend>
  72.                                 <table class="table table-striped">
  73.                                     <tr>
  74.                                         <td width="170"><label for="" class="control-label">Nomor Resi</label> </td>
  75.                                         <td width="10">:</td>
  76.                                         <td><?php echo $detail['no_resi'] ?></td>
  77.                                     </tr>
  78.                                     <tr>
  79.                                         <td width="50"><label for="" class="control-label">Jenis Pengiriman</label> </td>
  80.                                         <td width="10">:</td>
  81.                                         <td><?php echo $detail['service'] ?></td>
  82.                                     </tr>
  83.                                     <tr>
  84.                                         <td width="50"><label for="" class="control-label">Tanggal</label></td>
  85.                                         <td width="10">:</td>
  86.                                         <td>
  87.                                             <?php if ($jasa == "jne"): ?>
  88.                                             <?php echo $detail['tanggal'] ?>
  89.                                             <?php else: ?>
  90.                                                 <?php echo $detail['tanggal'] ?>   
  91.                                             <?php endif ?>
  92.                                         </td>
  93.                                     </tr>
  94.                                     <tr>
  95.                                         <td width="50"><label for="" class="control-label">Status</label> </td>
  96.                                         <td width="10">:</td>
  97.                                         <td><?php echo $detail['status'] ?></td>
  98.                                     </tr>
  99.                                 </table>
  100.                                 <legend>Asal & Tujuan</legend>
  101.                                 <table class="table table-bordered">
  102.                                     <thead>
  103.                                         <tr>
  104.                                             <th>Pengirim</th>
  105.                                             <th>Penerima</th>
  106.                                         </tr>
  107.                                     </thead>
  108.                                     <tbody>
  109.                                         <tr>
  110.                                             <td>
  111.                                                 <?php if ($jasa == "jne"): ?>
  112.                                                     Nama :  <?php echo $detail['asal']['nama'] ?><br>
  113.                                                     Dari : <?php echo $detail['asal']['alamat'] ?>
  114.                                                 <?php else: ?>
  115.                                                     Dari : <?php echo $detail['asal']['alamat'] ?>
  116.                                                 <?php endif ?><br>
  117.                                             </td>
  118.                                             <td>
  119.                                                 <?php if ($jasa == "jne"): ?>
  120.                                                     Nama :  <?php echo $detail['tujuan']['nama'] ?><br>
  121.                                                     Dari : <?php echo $detail['tujuan']['alamat'] ?>
  122.                                                 <?php else: ?>
  123.                                                     Dari : <?php echo $detail['tujuan']['alamat'] ?>
  124.                                                 <?php endif ?><br>
  125.                                             </td>
  126.                                         </tr>
  127.                                     </tbody>
  128.                                 </table>
  129.                                 <legend>Tracking Status</legend>
  130.                                 <table class="table table-bordered">
  131.                                     <thead>
  132.                                         <tr>
  133.                                             <th>Tanggal & Waktu</th>
  134.                                             <th>Lokasi</th>
  135.                                             <th>Status</th>
  136.                                             <th>Keterangan</th>
  137.                                         </tr>
  138.                                     </thead>
  139.                                     <tbody>
  140.                                         <?php  
  141.                                             for ($i=0; $i < count($riwayat) ; $i++)
  142.                                             {
  143.                                                 ?>
  144.                                                 <tr>
  145.                                                     <td>
  146.                                                         <?php  
  147.                                                             if ($jasa == "tiki")
  148.                                                             {
  149.                                                                 echo $riwayat[$i]['taggal']." ".$riwayat[$i]['waktu'];
  150.                                                             }
  151.                                                             else
  152.                                                             {
  153.  
  154.                                                                 echo $riwayat[$i]['taggal'];
  155.                                                             }
  156.                                                         ?>
  157.                                                     </td>
  158.                                                     <td><?php echo $riwayat[$i]['lokasi'] ?></td>
  159.                                                     <td>
  160.                                                         <?php if ($jasa == "jne"): ?>
  161.                                                             <?php echo $riwayat[$i]['keterangan'] ?>
  162.                                                         <?php else: ?>
  163.                                                             <?php echo $riwayat[$i]['status'] ?>
  164.                                                         <?php endif ?>
  165.                                                     </td>
  166.                                                     <td>
  167.                                                         <?php if ($jasa == "tiki"): ?>
  168.                                                             <?php echo $riwayat[$i]['keterangan'] ?>
  169.                                                         <?php else: ?>
  170.                                                             <?php echo ""; ?>
  171.                                                         <?php endif ?>
  172.                                                     </td>
  173.                                                 </tr>
  174.                                                 <?php
  175.                                             }
  176.                                         ?>
  177.                                     </tbody>
  178.                                 </table>
  179.                             </div>
  180.                         </div>
  181.                         <?php
  182.                         } else
  183.                         {
  184.                             echo '<div class="alert alert-danger">Data tidak ditemukan. Pastikan Nomor Resi dan Jasa Pengiriman benar.</div>';
  185.                         }
  186.                     }
  187.                 ?>
  188.             </div>
  189.         </div>
  190.         <!-- jQuery -->
  191.         <script src="//code.jquery.com/jquery.js"></script>
  192.         <!-- Bootstrap JavaScript -->
  193.         <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
  194.         <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
  195.         <script src="Hello World"></script>
  196.     </body>
  197. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement