Undefined index

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rajani s
    New Member
    • Aug 2011
    • 1

    Undefined index

    my problem is that showing error like this


    Notice: Undefined index: OFFICE in C:\wamp\www\tre asurynet\Common \PHP\creaXMLMen u.php on line 44
    i have been trying very much to get this error not having please help.. anyhow i wants to execute this one.. this is code


    44 line: $office = explode(",", $attributes['OFFICE']);
    //print_r($office );
    for($i=0; $i<count($offic e); $i++)
    {
    if($_SESSION['Profile_Trea_T ype'] == $office[$i])
    {
    $print = 'Y';
    break;
    }
    }
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    It's saying your $attributes array doesn't have anything in there with the key office.

    Comment

    Working...