Advertisement
lemueltra

home e conexao.php

Jan 25th, 2021
1,147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2.     include_once 'conexao.php';
  3. ?>
  4.  
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8.     <title></title>
  9. </head>
  10. <body>
  11.  
  12. </body>
  13. </html>
  14.  
  15. <?php
  16.  
  17. $dbServername = "localhost";
  18. $dbUsername = "root";
  19. $dbPassword = "";
  20. $dbName = "sistema_login";
  21.  
  22. $conn = mysqli_connect($dbServername, $dbUsername, $dbPassword, $dbName);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement