我目前有一個帶有html代碼的php文件。在body標籤im的開頭部分,包括一個包含db連接,查詢和fetch_result的dbcon.php。我現在想在HTML文件中稍後使用這些結果,但我無法讓它工作。包含php文件的變量
網站文件看起來是這樣的:
<html>
<head>...</head>
<body>
<?php include("dbcon.php"); ?>
...
<some html stuff>
...
<? here i want to use the data from the query ?>
...
</body></html>
的dbcon.php僅包含連接,查詢和fetch_results。
編輯: dbcon:
<?php
$con=mysql_connect("localhost:8889","user","pw","db");
$result_query = mysql_query($con,"SELECT * FROM table");
$results = mysql_fetch_array($results_query);
?>
我不能訪問HTML文件的下部分的數據。
請發佈dbcon.php – David
當你說「我無法訪問html文件下半部分的數據」時,你是什麼意思? –
[請停止使用mysql_ *函數](http://stackoverflow.com/q/12859942/1238019),它們[已正式棄用](https://wiki.php.net/rfc/mysql_deprecation) 。相反的,對[預處理語句(http://dev.mysql.com/doc/refman/5.0/en/sql-syntax-prepared-statements.html)看看,然後用[mysqli的(HTTP:/ /php.net/manual/en/book.mysqli.php)或[PDO](http://php.net/manual/en/book.pdo.php)。 – zessx