Advertisement
Guest User

Untitled

a guest
Mar 21st, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <?php
  2. function conexao() {
  3. $db = 'webservice';
  4. $user = 'xxxxx';
  5. $pass = 'xxxxx';
  6. $host = 'localhost';
  7. $conn = mysql_connect($host,$user,$pass);
  8. mysql_select_db($db);
  9. }
  10. conexao();
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement