Home  >  Q&A  >  body text

What is the source code of conn.php?

What is the source code of conn.php?

Mr_BIGMr_BIG2361 days ago1806

reply all(1)I'll reply

  • 树下赏蝶

    树下赏蝶2018-11-23 17:04:16

    This is the PHP file that contains the connection to the database. You can write it like this

    <?php

    define('DB_HOST','localhost');
    define('DB_USER' ,'root');
    define('DB_PSW','Connection password');
    define('DB_NAME','Database name');
    define('DB_CHARSET','utf-8' );
    $cnn=mysqli_connect(DB_HOST,DB_USER,DB_PSW,DB_NAME);
    /*if (!$cnn){
    die("Failed to connect to database").mysqli_error($cnn);
    }
    echo "Connect to database successfully";*/
    ?>

    reply
    1
  • Cancelreply