Advertisement
Guest User

Untitled

a guest
Jun 17th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. <?php
  2.     $host =addslashes("localhost");
  3.     $user =addslashes("root");
  4.     $pass =addslashes("");
  5.     $bank =addslashes("transformice");
  6.    
  7.     $conexao=mysqli_connect($host,$user,$pass,$bank);
  8.    
  9.     if (mysqli_connect_errno($conexao)){
  10.         echo "<center>";
  11.         echo "<a href='index.html'>Retornar</a>";
  12.     }else{
  13.     }
  14.     ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement