Undefied index displying all of a sudden

user3464354

I am getting an error message was has never happened before, i am using same code but i hae updated my xampp Heres the code

<?php
session_start();
// Get the variable 

$op = $_REQUEST['op'];
$content = $_REQUEST['content'];
$id = $_REQUEST['id'];
$status = $_REQUEST['status'];


// Choose the operation
switch ($op){
    case "getList":
            $dbObj = new DBAccess();
            $dbObj->getList();
            break;
    case "addList":
            $dbObj = new DBAccess();
            $dbObj->addList($content);
            break;
    case "updateList":
            $dbObj = new DBAccess();
            $dbObj->updateList($id, $content);
            break;
    case "removeList":
            $dbObj = new DBAccess();
            $dbObj->removeList($id);
            break;
    case "removeAllList":
            $dbObj = new DBAccess();
            $dbObj->removeAllList();
    break;
}

I am getting the error for the op, content, id and status, but this has always worked before. Any ideas?

Fisherman

May Be Your error_reporting was off before update .. You can ignore this error by following code but still you gotta find where is for it happend

$op = isset($_REQUEST['op'])?$_REQUEST['op']:'getList';
$content = isset($_REQUEST['content'])?$_REQUEST['content']:'';
$id = isset($_REQUEST['id'])?$_REQUEST['id']:'';
$status = isset($_REQUEST['status'])?$_REQUEST['status']:'';

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Application all of a sudden crashing

From Dev

Grunt stopped working all of a sudden

From Dev

Scrolling is disabled all of a sudden in terminal

From Dev

apt is slow all of a sudden on debian

From Dev

USB ports not working all of a sudden

From Dev

App is all of the sudden throwing an NSInvalidArgumentException

From Dev

Sound stopped working all of a sudden

From Dev

Python - fabric module missing all of a sudden

From Dev

Pycharm shows "Unresolved reference" all of a sudden

From Dev

rake assets:precompile fails all of a sudden

From Dev

Google maps not showing all of a sudden in Android

From Dev

Getting lots of CloudKit errors (500) all of a sudden

From Dev

Why is Composer Install Failing All of the Sudden?

From Dev

Entire display not fully visible on monitor all of a sudden?

From Dev

Drive C filled up all of a sudden

From Dev

No sound output device detected all of a sudden

From Dev

Possible for a modem to all of the sudden have degraded speed?

From Dev

Object doesn't support this action - all of a sudden

From Dev

All of a sudden grub menu started showing

From Dev

SQL Port 1433 Blocked All of the Sudden

From Dev

Toggle all the sudden won't work, JQuery

From Dev

Node.js server not working all of a sudden

From Dev

Android: listview is not displying

From Dev

GML layer is displying in changed rotation

From Dev

howt o fix protractor that started failing on alerts all of a sudden

From Dev

Can't load GRUB all of a sudden (UEFI problem)

From Dev

All of a sudden my Scala code expects `;` at the end of each statement

From Dev

All of a sudden, I cannot change any strings in Android Studio

From Dev

MySQL - All of a sudden "Communications link failure" between docker container and MySQL

Related Related

  1. 1

    Application all of a sudden crashing

  2. 2

    Grunt stopped working all of a sudden

  3. 3

    Scrolling is disabled all of a sudden in terminal

  4. 4

    apt is slow all of a sudden on debian

  5. 5

    USB ports not working all of a sudden

  6. 6

    App is all of the sudden throwing an NSInvalidArgumentException

  7. 7

    Sound stopped working all of a sudden

  8. 8

    Python - fabric module missing all of a sudden

  9. 9

    Pycharm shows "Unresolved reference" all of a sudden

  10. 10

    rake assets:precompile fails all of a sudden

  11. 11

    Google maps not showing all of a sudden in Android

  12. 12

    Getting lots of CloudKit errors (500) all of a sudden

  13. 13

    Why is Composer Install Failing All of the Sudden?

  14. 14

    Entire display not fully visible on monitor all of a sudden?

  15. 15

    Drive C filled up all of a sudden

  16. 16

    No sound output device detected all of a sudden

  17. 17

    Possible for a modem to all of the sudden have degraded speed?

  18. 18

    Object doesn't support this action - all of a sudden

  19. 19

    All of a sudden grub menu started showing

  20. 20

    SQL Port 1433 Blocked All of the Sudden

  21. 21

    Toggle all the sudden won't work, JQuery

  22. 22

    Node.js server not working all of a sudden

  23. 23

    Android: listview is not displying

  24. 24

    GML layer is displying in changed rotation

  25. 25

    howt o fix protractor that started failing on alerts all of a sudden

  26. 26

    Can't load GRUB all of a sudden (UEFI problem)

  27. 27

    All of a sudden my Scala code expects `;` at the end of each statement

  28. 28

    All of a sudden, I cannot change any strings in Android Studio

  29. 29

    MySQL - All of a sudden "Communications link failure" between docker container and MySQL

HotTag

Archive