2017-02-28 35 views
-3

Notice: Undefined variable: con in C:\xampp\htdocs\projekt\ps.php on line 34致命的錯誤(記事本++)

Fatal error: Call to a member function query() on null in C:\xampp\htdocs\projekt\ps.php on line 34

這在我的瀏覽器打開,我尋找其他回覆在這個問題上,但我找不到答案。

問題是這裏的index.php

<?php 
$res -$con->query("SELECT * FROM studenti"); 
while ($row=$res->fetch_array()){ 
?> 

這是基礎:

<?php 

$con = mysqli_connect('localhost', 'root',''); 
if(!$con) 
{ 
    echo 'Not connected'; 
} 
if(!mysqli_select_db($con,'studenti')) 
{ 
    echo 'database not selected'; 
} 
?> 
+3

那是什麼意思? '$ res - $ con> query(...)'? – arkascha

+0

爲什麼包含php代碼的文件名爲'index.html'?這是行不通的_unless_你對你的http服務器做了一些非常奇怪的修改...... – arkascha

+0

這真的不是一個好問題。請提供完整的代碼示例,您缺少一半的代碼。 – Roman

回答

0

試試這個。

<?php 
$res = $con->query("SELECT * FROM studenti"); 
while ($row=$res->fetch_array()){ 
?> 

我改變$res-$con$res = $con

我想那是你的目標?