treehouse : what would you like to learn today?
Web Design Web Development iOS Development

MySQL Connection?

  • HOW can i know mysql is connection? mysql is creat, and usrname \password :geek: :
  • To know about the Mysql connection go the Mysql server home page,Where you can get the connection string and etc.
    You can also get the details about the username and/or password from the onnection string itself.
  • well if you are connection with PHP you could use the "or die" or use if/else...

    $stmt = connection();

    if($stmt) {

    echo "heck yea!";

    } else {

    echo "no dice!";

    }