问题一:Notice: Undefined index: noan_note_id in E:\Easyphp\EasyPHP-5.3.4.0\www\01\manage\note_read.php on line 48
问题而:( ! ) Notice: Undefined variable: note_flag in E:\Easyphp\EasyPHP-5.3.4.0\www\01\manage\note_read.php on line 65
程序如下

解决方案 »

  1.   

    Notice: Undefined index: noan_note_id  
    未定义的的索引
    Notice: Undefined variable: note_flag
      警告:未定义的变量。。
      

  2.   

    问题一:Notice: Undefined index: noan_note_id in E:\Easyphp\EasyPHP-5.3.4.0\www\01\manage\note_read.php on line 48
    在第48行索引noan_note_id沒有定義或不存在
    解決方法是,查看數組中的這個索引是否已经赋值了.如果没有赋值则给他赋值问题2:( ! ) Notice: Undefined variable: note_flag in E:\Easyphp\EasyPHP-5.3.4.0\www\01\manage\note_read.php on line 65
    在第65行變量note_flag沒有定義或不存在
    解决方法是,给变量note_flag定义一下就好了,例如note_flag='';或note_flag=0;视情况而定.