Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function Conectarse()
- {
- global $link;
- if (!($link=mssql_pconnect("YAGAMY\SQLEXPRESS","sa","123456")))
- {
- exit();
- }
- if (!mssql_select_db("UserLogin",$link))
- {
- exit();
- }
- return $link;
- }
- Conectarse();
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement