Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.71 KB | None | 0 0
  1. <?php
  2. // Login to MySQL
  3. $address = "ist260instance.cbdn89vjqwa0.us-west-2.rds.amazonaws.com";
  4. $user = "istlogin";
  5. $pass = "ist260grouplogin";
  6. $database_name = "ist260database";
  7. $table="accounts"
  8. $conn = new mysqli('address', 'user', 'pass', 'database_name','table' 3306);
  9.  
  10. // Oh no! A connect_errno exists so the connection attempt failed!
  11. if ($conn->connect_errno) {
  12.     echo "Error: Failed to make a MySQL connection, here is why: \n";
  13.     echo "Error #: " . $conn->connect_errno . "\n";
  14.     echo "Error: " . $conn->connect_error . "\n";
  15.     die;
  16. }
  17.  
  18. // Grab the login scripts
  19. include('session.php');
  20.  
  21. $isLoggedIn = Session::IsValidSession($conn);
  22. ?>
  23.  
  24. <!DOCTYPE html>
  25.  
  26. <html lang="en">
  27.  
  28. <head>
  29.  
  30. <!--[if lt IE 9]>
  31.  
  32. <script src="http://html5.google.com/svn/trunk/html5.js">
  33.  
  34. </script>
  35.  
  36. <! [endif]-->
  37.  
  38. <title>Fort Zocolo Academy</title>
  39.  
  40. <meta charset="utf-8">
  41.  
  42. <meta name="description" content="Education is the building block, Passion is the tool.">
  43.  
  44. <link rel="stylesheet" href="FtZocoloAcademy.css">
  45.  
  46. <meta name="viewport"
  47.  
  48. content="width=device-width, initial-scale=1.0">
  49.  
  50. </head>
  51.  
  52. <body>
  53.  
  54.  
  55.  
  56. <div id="wrapper">
  57.  
  58. <header id="banner"><h1>Fort Zocolo Academy</h1></h1></header>
  59.  
  60. <nav>
  61. SIDE B
  62. </nav>
  63.  
  64. <main>
  65.  
  66. <h2 class="category">LOGIN WITH CREDENTIALS</h2>
  67. <p>Required fields are marked with an asterisk(*).</p>
  68. SIDE A
  69.  
  70.  
  71.  
  72. </main>
  73. <footer>
  74. <div>
  75. <a id="mobile" href="tel:800-555-5555">1-800-555-5555</a><br>
  76. <span id="desktop">1-800-555-5555</span>
  77. <br>
  78. 101 ShortStick Circle<br>
  79. Central Susquehanna, PA 61616<br>
  80. &copy; 2016 Plexis Innovations<br>
  81. </div>
  82. <a href="yourfirstname@yourlastname.com">yourfirstname@yourlastname.com</a>
  83. </footer>
  84. </div>
  85. </body>
  86. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement