Advertisement
Guest User

Conect

a guest
Dec 8th, 2014
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2. function Conectarse()
  3. {
  4. global $link;
  5. if (!($link=mssql_pconnect("YAGAMY\SQLEXPRESS","sa","123456")))
  6. {
  7. exit();
  8. }
  9. if (!mssql_select_db("UserLogin",$link))
  10. {
  11. exit();
  12. }
  13. return $link;
  14. }
  15. Conectarse();
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement