我是PHP的新手,我还在学习。我在执行更新功能时遇到此错误:
注意:未定义的索引:第33行的C:\ xampp \ htdocs \ pointofsale \ updateproduct.php中的productname
注意:未定义的索引:第40行的C:\ xampp \ htdocs \ pointofsale \ updateproduct.php中的categoryproduct
注意:未定义的索引:第74行的C:\ xampp \ htdocs \ pointofsale \ updateproduct.php中的originalprice
注意:未定义的索引:第81行的C:\ xampp \ htdocs \ pointofsale \ updateproduct.php中的售价
注意:未定义的索引:第86行的C:\ xampp \ htdocs \ pointofsale \ updateproduct.php中的利润
我不知道如何解决它,我希望也许有人可以帮助我。
这里是代码:
<form method="post" enctype="multipart/form-data" class="form-horizontal form-label-left">
<div class="form-group">
<label class="control-label col-md-4" for="productname">Product Name</label>
<div class="col-md-4">
<input type="text" value="<?php echo $row['productname']; ?>" name="productname" id="productname" required class="form-control col-md-7 col-xs-12">
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="categoryproduct">Category Product</label>
<div class="col-md-4">
<input type="text" value="<?php echo $row['categoryproduct']; ?>" name="categoryproduct" id="categoryproduct" required class="form-control col-md-7 col-xs-12">
</div>
<div class="form-group">
<label class="control-label col-md-4" for="originalprice">Original Price (RM)</label>
<div class="col-md-4">
<input type="text" name="originalprice" id="originalprice" value="<?php echo $row['originalprice']; ?>" class="form-control col-md-7 col-xs-12">
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="sellingprice">Selling Price (RM)</label>
<div class="col-md-4">
<input type="text" name="sellingprice" id="sellingprice" value="<?php echo $row['sellingprice']; ?>" class="form-control col-md-7 col-xs-12">
</div>
</div>
<div class="form-group">
<label class="control-label col-md-4" for="profit">Profit</label>
<div class="col-md-4">
<input type="text" name="profit" value="<?php echo $row['profit']; ?>" id="profit" class="form-control col-md-7 col-xs-12" readonly>
</div>
</div>
</form>