Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1. <style type="text/css">
  2. #descr {
  3. margin: 0px;
  4. width: 100%;
  5. height: 265px;
  6. }
  7. </style>
  8. <div class="right_col" role="main">
  9.  
  10. <div class="">
  11. <div class="page-title">
  12. <div class="title_left">
  13. <h3>
  14. Letter <small> </small>
  15. </h3>
  16. </div>
  17.  
  18. <div class="title_right">
  19. <div class="col-md-5 col-sm-5 col-xs-12 form-group pull-right top_search">
  20. <div class="input-group">
  21. <input type="text" class="form-control" placeholder="Search for...">
  22. <span class="input-group-btn">
  23. <button class="btn btn-default" type="button">Go!</button>
  24. </span>
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. <div class="clearfix"></div>
  30.  
  31. <div class="row">
  32. <div class="col-md-12">
  33. <div class="x_panel">
  34. <div class="x_title">
  35. <h2>Pesan Lolos <small></small></h2>
  36. <ul class="nav navbar-right panel_toolbox">
  37. <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a></li>
  38. <li class="dropdown">
  39. <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
  40. <i class="fa fa-wrench"></i>
  41. </a>
  42. <ul class="dropdown-menu" role="menu">
  43. <li><a href="#">Settings 1</a></li>
  44. <li><a href="#">Settings 2</a></li>
  45. </ul>
  46. </li>
  47. <li><a class="close-link"><i class="fa fa-close"></i></a></li>
  48. </ul>
  49. <div class="clearfix"></div>
  50. </div>
  51. <div class="x_content">
  52. <?php
  53. $file = 'lolos.php';
  54. $text = file_get_contents($file);
  55.  
  56. if (isset($_POST['text']))
  57. {
  58. // save the text contents
  59. file_put_contents($file, $_POST['text']);
  60.  
  61. // redirect to form again
  62. echo "<script>
  63. alert('Berhasil Update');
  64. window.location.href='?page=letter';
  65. </script>";
  66. exit();
  67. }
  68. ?>
  69. <form method="post">
  70. <div class="form-group">
  71. <textarea name="text" id="descr"><?php echo htmlspecialchars($text); ?></textarea>
  72. </div>
  73. <div class="ln_solid"></div>
  74. <div class="form-group" style="text-align: center;">
  75. <input type="submit" class="btn btn-success" value="Apply">
  76. </div>
  77. </form>
  78. </div>
  79. </div>
  80. </div>
  81.  
  82. <div class="col-md-12">
  83. <div class="x_panel">
  84. <div class="x_title">
  85. <h2>Pesan Gagal <small></small></h2>
  86. <ul class="nav navbar-right panel_toolbox">
  87. <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a></li>
  88. <li class="dropdown">
  89. <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
  90. <i class="fa fa-wrench"></i>
  91. </a>
  92. <ul class="dropdown-menu" role="menu">
  93. <li><a href="#">Settings 1</a></li>
  94. <li><a href="#">Settings 2</a></li>
  95. </ul>
  96. </li>
  97. <li><a class="close-link"><i class="fa fa-close"></i></a></li>
  98. </ul>
  99. <div class="clearfix"></div>
  100. </div>
  101. <div class="x_content">
  102. <?php
  103. $fileg = 'gagal.php';
  104. $textg = file_get_contents($fileg);
  105.  
  106. if (isset($_POST['textg']))
  107. {
  108. // save the text contents
  109. file_put_contents($fileg, $_POST['textg']);
  110.  
  111. // redirect to form again
  112. echo "<script>
  113. alert('Berhasil Update');
  114. window.location.href='?page=letter';
  115. </script>";
  116. exit();
  117. }
  118. ?>
  119. <form method="post">
  120. <div class="form-group">
  121. <textarea name="textg" id="descr"><?php echo htmlspecialchars($textg); ?></textarea>
  122. </div>
  123. <div class="ln_solid"></div>
  124. <div class="form-group" style="text-align: center;">
  125. <input type="submit" class="btn btn-success" value="Apply">
  126. </div>
  127. </form>
  128. </div>
  129. </div>
  130. </div>
  131. </div>
  132. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement