dongyuan1984 2017-07-10 16:53
浏览 107
已采纳

INNER JOIN:注意:显示未定义的索引

I have two table temp_bid and post_project. I want records who bid on projects. and for that, I have made a query using INNER JOIN but, getting Undefined Index error. It works in MySQL editor.

Here is my code.

<?php
include 'conn.php';
session_start();
if ($_SESSION['EmailID'] == "") {
    header("location:index.html");
}

$getTempBid = "SELECT * from temp_bid TB INNER JOIN post_project P ON P._id = TB.prj_id " + 
" WHERE TB.bidBy = '" .$_SESSION['EmailID']."'";

$tempBidResult = mysqli_query($conn,$getTempBid);

while($fetchTempBid = mysqli_fetch_row($tempBidResult)) {
    $tempBidId = $fetchTempBid['tempBidId'];
    $tempBidPrjId = $fetchTempBid['prj_id'];
    $tempBidPostBy = $fetchTempBid['postBy'];
    $tempBidBy = $fetchTempBid['bidBy'];
    $tempBidOn = new DateTime($fetchTempBid['bidOn']);
    $tempBidAmount = $fetchTempBid['amount'];
    $tempBidDays = $fetchTempBid['days'];
    $tempBidProposalDetails = $fetchTempBid['proposalDetails'];
    $tempBidStatus = $fetchTempBid['bidStatus'];
    $prjId = $fetchTempBid['_id'];
    $prjTitle = $fetchTempBid['projectTitle'];
    $prjDescriptions = $fetchTempBid['projectDescriptions'];
    $prjSkills = $fetchTempBid['projectRequiredSkill'];
    $prjSkills1 = explode(",", $prjSkills);
    $prjBudget = $fetchTempBid['projectBudget'];
    $prjPostDate = new DateTime($fetchTempBid['projectCreatedOn']);
    $prjStatus = $fetchTempBid['projectStatus'];
}
$records = mysqli_num_rows($tempBidResult);
?>

Output:

Notice: Undefined index: tempBidId in C:\wamp\www\Gopinath Infosystem\testpage.php on line 23
Notice: Undefined index: prj_id in C:\wamp\www\xxx\testpage.php on line 24
Notice: Undefined index: postBy in C:\wamp\www\xxx\testpage.php on line 25
Notice: Undefined index: bidBy in C:\wamp\www\xxx\testpage.php on line 26
Notice: Undefined index: bidOn in C:\wamp\www\xxx\testpage.php on line 27
Notice: Undefined index: amount in C:\wamp\www\xxx\testpage.php on line 28
Notice: Undefined index: days in C:\wamp\www\xxx\testpage.php on line 29
  • 写回答

1条回答 默认 最新

  • duanlu1908 2017-07-10 16:59
    关注

    mysqli_fetch_row returns an array with numeric keys. From the documentation:

    Fetches one row of data from the result set and returns it as an enumerated array, where each column is stored in an array offset starting from 0 (zero). Each subsequent call to this function will return the next row within the result set, or NULL if there are no more rows.

    Use mysqli_fetch_assoc instead to return an array with the keys being the column names.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 c语言写的8051单片机存储器mt29的模块程序
  • ¥60 求直线方程 使平面上n个点在直线同侧并且距离总和最小
  • ¥50 java算法,给定试题的难度数量(简单,普通,困难),和试题类型数量(单选,多选,判断),以及题库中各种类型的题有多少道,求能否随机抽题。
  • ¥50 rk3588板端推理
  • ¥250 opencv怎么去掉 数字0中间的斜杠。
  • ¥15 这种情况的伯德图和奈奎斯特曲线怎么分析?
  • ¥250 paddleocr带斜线的0很容易识别成9
  • ¥15 电子档案元素采集(tiff及PDF扫描图片)
  • ¥15 flink-sql-connector-rabbitmq使用
  • ¥15 zynq7015,PCIE读写延时偏大