我有一个 PHP 文件,但是在<?php include 'RandomFile.php' ?>
被扔掉之后的所有东西,我不知道为什么!我需要这方面的帮助。
RandomFile.php 的内容如下:
require 'cons.php';
mysql_connect($URL, $USER, $PASS, $DBN);
$strSQL = "SELECT * FROM song";
// Execute the query (the recordset $rs contains the result)
$rs = mysql_query($strSQL);
// Loop the recordset $rs
// Each row will be made into an array ($row) using mysql_fetch_array
if($rs === FALSE) {
die(mysql_error()); // TODO: better error handling
}
while($row = mysql_fetch_array($rs)) {
// Write the value of the column FirstName (which is now in the array $row)
echo $row['url'] . "<br />";
}
// Close the database connection
mysql_close();
所以基本上在<?php include 'randomfile.php' ?>
包含我所有的html之后,我的浏览器中都没有显示出来,但是如果我回去编辑文件,它就在那里???