Advertisement
Guest User

include

a guest
Nov 27th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Documento sin título</title>
  6. </head>
  7.  
  8. <body>
  9. <?php
  10. function conectarse(){
  11. $server="localhost";
  12. $user="root";
  13. $password="";
  14. $db="proyecto";
  15. $conectar=new mysqli($server,$user,$password,$db) or die ("Error en la conexion a Mysql");
  16. return $conectar;
  17. }
  18. $conexion=conectarse();
  19. ?>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement