Advertisement
Guest User

z

a guest
Oct 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <?php
  2. if ($ambil['info'] == "1") {
  3. $type = "default";
  4. } else if ($ambil['info'] == "2") {
  5. $type = "primary";
  6. } else if ($ambil['info'] == "3") {
  7. $type = "primary";
  8. } else if ($ambil['info'] == "4") {
  9. $type = "danger";
  10. } else if ($ambil['info'] == "5") {
  11. $type = "success";
  12. } else if ($ambil['info'] == "6" and ($ambil['status'] == "di kembalikan")) {
  13. $type = "info";
  14. } else if ($ambil['info'] == "7") {
  15. $type = "warning";
  16. } ?>
  17. <span class="label label-table label-<?php echo $type; ?>"><?php echo $ambil['info']; ?></span></td>
  18. </tr>
  19. <? } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement