Guest User

Untitled

a guest
Jul 18th, 2012
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. quick assistance about a connection to a db (local db only)
  2. $c2d;
  3.  
  4. $c2d = mysqli_connect('127.0.0.1', 'abc', 'abc', 'db-name-here')
  5.  
  6. $c2d = mysqli_connect('127.0.0.1', 'xyz', 'xyz', 'db-name-here')
  7.  
  8. if($c2d) { //means im on mac so it will connect
  9. do whatever
  10. } else { //then im on pc so
  11. $c2d =s the pc connection
  12. }
Advertisement
Add Comment
Please, Sign In to add comment