从索引页面的数据库中读取并显示txt文件的内容

时间:2016-07-29 10:55:44

标签: php html mysql mysqli php-5.3

在php中如何从保存在TXT文件夹中的文本文件中读取索引页,并且文本名已经保存在mysqli数据库中,我是php和数据库的新手。 这是数据库表

enter image description here

1 个答案:

答案 0 :(得分:0)

从SQL获取文本文件名,然后使用file_get_contents()获取文本文件内容。

$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "myDB";

// Create connection
$connection= new mysqli($servername, $username, $password, $dbname);
    $query = mysqli_query($connection, "SELECT name FROM new_record");
    while ($row = mysqli_fetch_array($query)) {
        $fileName = $row['name'];
        $fileContents = file_get_contents("/TXT/$fileName");
        echo $fileContents;
    }