Advertisement
Guest User

Untitled

a guest
Jun 24th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1.  
  2. <?php
  3. function conexion(){
  4. $servidor="localhost";
  5. $usuario="root";
  6. $password="";
  7. $bd="abamani";
  8.  
  9. $conexion=mysqli_connect($servidor,$usuario,$password,$bd);
  10.  
  11. return $conexion;
  12. }
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement