dqwmhrxt68679 2013-08-20 12:01
浏览 21
已采纳

来自php的不必要的通知[重复]

recently i just configure my script with common script for entry data while im trying to submit the data , the data is successful to submit . but there is something notice that bothering me , they say Notice: Undefined index: type in D:\xampp\htdocs\project\submit.php on line 7

and the line is

<?php
include 'includes/config.php';


if($_SERVER["REQUEST_METHOD"] == "POST")
{
$type=addslashes($_POST['type']); // this is line 7
$nama_barang=addslashes($_POST['nama_barang']);
$kategori=addslashes($_POST['kategori']);
$deskripsi=addslashes($_POST['deskripsi']);

im using xampp v.3.2.1 , it is possible the notice is from the xampp ? thanks you guys im so glad for your answer :))

</div>
  • 写回答

2条回答 默认 最新

  • drztpx8735 2013-08-20 12:05
    关注

    The notice mentions that your $_POST array has no index type. So you should check for it before you try to access it:

    $type = ""; //you could set a default here
    if(array_key_exists("type", $_POST))
        $type = addslashes($_POST['type']);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 TLS1.2协议通信解密
  • ¥40 图书信息管理系统程序编写
  • ¥20 Qcustomplot缩小曲线形状问题
  • ¥15 企业资源规划ERP沙盘模拟
  • ¥15 树莓派控制机械臂传输命令报错,显示摄像头不存在
  • ¥15 前端echarts坐标轴问题
  • ¥15 ad5933的I2C
  • ¥15 请问RTX4060的笔记本电脑可以训练yolov5模型吗?
  • ¥15 数学建模求思路及代码
  • ¥50 silvaco GaN HEMT有栅极场板的击穿电压仿真问题