Advertisement
Guest User

connect atualizado

a guest
Jul 5th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. function Connection(){
  3. $server="localhost";
  4. $user="id2159021_teste";
  5. $pass="teste";
  6. $db="id2159021_teste";
  7.  
  8. echo "Iniciando connection()<br>";
  9. $connection = mysqli_connect($server, $user, $pass);
  10. echo "Conectado. Selecionando DB<br>";
  11.  
  12.  
  13. mysqli_select_db($connection, $db);
  14.  
  15. echo "DB selecionado<br>";
  16. return $connection;
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement