Advertisement
Guest User

Untitled

a guest
Jun 19th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Ejemplo de PHP</title>
  4. </head>
  5. <body>
  6. <?php
  7. function Conectarse()
  8. {
  9. if (!($link=mysql_connect("200.185.51.66","allexperts277","kah66yjy")))
  10. {
  11. echo "Error conectando a la base de datos.";
  12. exit();
  13. }
  14. if (!mysql_select_db("allexperts277",$link))
  15. {
  16. echo "Error seleccionando la base de datos.";
  17. exit();
  18. }
  19. return $link;
  20. }
  21.  
  22. $link=Conectarse();
  23. echo "Conexión con la base de datos conseguida.<br>";
  24.  
  25. mysql_close($link); //cierra la conexion
  26. ?>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement