Undefined index is just means that you're trying to use a variable that hasn't been created yet. Couple ways to fix it. 1 - before the section that uses them starts, default the varaibles to something, or 2 - use if(isset()) statements on each one. This can have some unintended side effects though.