Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <?php
  2.  
  3. $file = "data.txt";
  4. $raw = file_get_contents($file);
  5.  
  6. $baris = explode("|R|", $raw);
  7.  
  8. ?>
  9. <table style="border:1px solid #333;">
  10. <thead>
  11. <th style="border-bottom:1px solid #333">Nama</th>
  12. <th style="border-bottom:1px solid #333">Email</th>
  13. <th style="border-bottom:1px solid #333">Telp</th>
  14. <th>&nbsp;</th>
  15. </thead>
  16. <tbody>
  17. <?php
  18. for($i = 0; $i < count($baris); $i++) {
  19. $barisKeI = $baris[$i];
  20. $koloms = explode("|F|", $barisKeI);
  21. //var_dump($koloms);
  22. if(count($koloms) != 3) continue;
  23.  
  24. echo "<tr>";
  25. echo "<td>".$koloms[0]."</td>";
  26. echo "<td>".$koloms[1]."</td>";
  27. echo "<td>".$koloms[2]."</td>";
  28. echo '<td><a href="phonebook.php?row='.$i.'">Edit</a></td>';
  29. echo '<td><a href="hapus.php?row='.$i.'">Delete</a></td>';
  30. echo "</tr>";
  31.  
  32. }
  33. ?>
  34. </tbody>
  35. </table>
  36. <?php
  37. //echo "<pre>"; // preformatted
  38. //print_r($baris);
  39. //echo "</pre>";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement