gpt4 book ai didi

php - 注意:尝试获取C:\xampp\htdocs\中非对象的属性

转载 作者:行者123 更新时间:2023-11-29 08:32:34 25 4
gpt4 key购买 nike

在执行此代码时,它给出一条错误消息,我对此一无所知。我确实做到了,但是没有找到任何解决方案。

**注意:尝试获取C:\ xampp \ htdocs中非对象的属性**

<?php
$_REQUEST['PropertyID'];
$_REQUEST['PropertyImageID'];
$propertyImageID=$_GET['PropertyImageID'];
$PropertyID=$_GET['PropertyID'];
require_once('db.php');
$propertyquery = "SELECT PropertyImageID, PropertyName, PropertyStatus, PropertyLocation, PropertyRegion FROM properties WHERE PropertyImageID =$propertyImageID";
$propertyquery_run = $connection->query($propertyquery);
if ($propertyquery_run-> num_rows > 0)
{
while ($propertyrow = $propertyquery_run-> fetch_assoc())
{
$imagequery = "SELECT PropertyImageID, ImagePath FROM propertyimages WHERE PropertyImageID = $PropertyID";
$imagequery_run = $connection->query($imagequery);
?>
<table style="margin-left:348px;">
<tr><td>PropertyName:</td><td><span style="color:#0F0; font-weight:bold;"><?php echo htmlentities($propertyrow['PropertyName']) ?></span></td></tr>
<tr><td>PropertyStatus:</td><td><span style="color:#0F0; font-weight:bold;"><?php echo htmlentities($propertyrow['PropertyStatus']) ?></span></td></tr>
<tr><td>PropertyLocation:</td><td><span style="color:#0F0; font-weight:bold;"><?php echo htmlentities($propertyrow['PropertyLocation']) ?></span></td></tr>
<tr><td>PropertyRegion:</td><td><span style="color:#0F0; font-weight:bold;"><?php echo htmlentities($propertyrow['PropertyRegion']) ?></span></td></tr>
</table>
<center>
<?php
if($imagequery_run -> num_rows > 0)
{
while ($imagerow = $imagequery_run-> fetch_assoc())
{
?>
<div style="border:solid 2px #9F0; border-radius:5px; height:222px; width:544px;">
<img src="<?php echo htmlentities($imagerow['ImagePath']) ?>" width="544" height="222" >
</div><br />
<?php
}
}

}
}
?>

最佳答案

当您将非对象变量用作对象时,会发生此通知。
您可能在不是对象的变量$a -> b中使用类似$a的语法。

确保$propertyquery_run$imagequery_run ...是具有您正在使用的属性的对象。

编辑:

如果错误在这里$imagequery_run -> num_rows > 0。这意味着$imagequery_run不是具有num_rows属性的对象。也许是NULL。测试前检查其值。

$imagequery = "SELECT PropertyImageID, ImagePath FROM propertyimages WHERE PropertyImageID = $PropertyID";
$imagequery_run = $connection->query($imagequery);
if(!$imagequery_run)
{
// do what you want
}

关于php - 注意:尝试获取C:\xampp\htdocs\中非对象的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16165320/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com