Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 18th, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. }