Advertisement
Guest User

Untitled

a guest
Jun 15th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.88 KB | None | 0 0
  1. <?php
  2. if(isset($_GET['action'])){
  3.     $action = $_GET['action'];
  4.     if("action"=="1"){
  5.    
  6.     }
  7. }else{
  8. ?>
  9. <style type="text/css">
  10. body
  11. {
  12.     margin-right:30px;
  13.     background-color:#000;
  14. }
  15. .container
  16. {
  17. text-align:center;
  18. }
  19.  
  20. .center_div
  21. {
  22. border:1px solid gray;
  23. margin-left:auto;
  24. margin-right:auto;
  25. margin-top:20px;
  26. width:30%;
  27. background-color:#CCC;
  28. text-align:left;
  29. padding:8px;
  30. }
  31. </style>
  32. <title>Installer</title>
  33. <div class="container">
  34. <div class="center_div">
  35.     <form action="?action=2" method="get">
  36.     <center><legend>Database Info</legend></center><br />
  37.     <td align="left"> <label>DataBase User: </label> <td align="right"><input type="text" name="user" size="20" align="right"></td></td><br/>
  38.         <td align="left"> <label>DataBase Pass: </label> <td align="right"><input type="text" name="pass" size="20"></td></td>
  39.     </form>
  40.     </div>
  41. </div>
  42. <?php
  43. }
  44. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement