suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Wo sind die Codes für die Dateien „conn.php“ und „functions.php“?

<?php

 require_once('conn.php'); //连接数据库

 require_once('functions.php');

 $sql = "SELECT * FROM news order by id desc";

 $info = mysql_query($sql); 

?>


为爱走天涯为爱走天涯2424 Tage vor1947

Antworte allen(2)Ich werde antworten

  • phpcn_u83868

    phpcn_u838682018-05-29 11:18:20

    <?php

    $servername = "localhost";

    $username = "root";

    $password = "root";


    // 创建连接

    $conn = mysqli_connect($servername, $username, $password);

    mysqli_set_charset($conn, 'utf8');

    mysql_select_db("article");

    // 检测连接

    if (!$conn) {

        die("Connection failed: " . mysqli_connect_error());

    }

    //echo "连接成功";

    ?>

    以上是conn.php的内容 

    functions.php 不知道是什么内容 刚开始学习 还没弄明白 这个文件要实现什么作用

    Antwort
    0
  • sky

    sky2018-04-12 17:59:25

    不是框架的话就在同级目录下,

    你的数据库链接也有问题

    Antwort
    0
  • StornierenAntwort