Connecting Tech Pros Worldwide Forums | Help | Site Map

Undefined index

Newbie
 
Join Date: Oct 2007
Posts: 1
#1: Oct 17 '07
hi sir;
following error is showing in my file 'save.php '

Undefined index: Hobby in D:\projects\php\anurag\save.php

ronverdonk's Avatar
Moderator
 
Join Date: Jul 2006
Location: The Netherlands
Posts: 4,139
#2: Oct 17 '07

re: Undefined index


Welcome to TSDN!

As to your probel: do we guess? Show your code within code tages! and we will be able to have a look.

Ronald
pbmods's Avatar
Site Moderator
 
Join Date: Apr 2007
Location: Texas
Posts: 5,435
#3: Oct 18 '07

re: Undefined index


Heya, bunty. Welcome to TSDN!

You're getting this error because you are referencing an element of an array, but that element doesn't exist.

Here's an example:
Expand|Select|Wrap|Line Numbers
  1. $array = array( 'test' => 'val', 'test2' => 'val2' );
  2.  
  3. echo $array['hobby'];
  4.  
Notice that $array['hobby'] doesn't exist.
Reply