Title: [Plugin: Ultimate Taxonomy Manager] PHP Notices
Last modified: August 19, 2016

---

# [Plugin: Ultimate Taxonomy Manager] PHP Notices

 *  Resolved [fireproofsocks](https://wordpress.org/support/users/fireproofsocks/)
 * (@fireproofsocks)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-ultimate-taxonomy-manager-php-notices/)
 * See my other post. You MUST turn on PHP notices while developing, otherwise you
   won’t be able to tell when you’re writing bad code. And when someone tries to
   use this plugin on a server that is displaying PHP notices, they get notices 
   popping up everywhere in the wp manager.
 * Your code looks pretty good and pretty clean — nice job. The biggest thing you
   have to fix is when you read variables out of the $_GET array.
 * E.g. this will throw a notice if your URL doesn’t have a ‘myvar’ parameter:
 *     ```
       if ( $_GET['myvar'] == 'something' )
       {
        // ... do something
       }
       ```
   
 * Instead, you should spend the extra time to check whether or not the place in
   the array is set:
 *     ```
       if ( isset($_GET['myvar']) && $_GET['myvar'] == 'something' )
       {
         // ... do something
       }
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [XYDAC](https://wordpress.org/support/users/deepakseth/)
 * (@deepakseth)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-ultimate-taxonomy-manager-php-notices/#post-1709176)
 * Hey, i had the isset checks at many places but as my error reeportin was off 
   snd it didnlt show the warnings so i kinda missed checking everywhere.
    thanks
   for pointing the issue mate, i’ll make sure i remove the notices asap.
 *  Plugin Author [XYDAC](https://wordpress.org/support/users/deepakseth/)
 * (@deepakseth)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-ultimate-taxonomy-manager-php-notices/#post-1709204)
 * fixed: let me know if you still find any
 *  Thread Starter [fireproofsocks](https://wordpress.org/support/users/fireproofsocks/)
 * (@fireproofsocks)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-ultimate-taxonomy-manager-php-notices/#post-1709237)
 * Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[Plugin: Ultimate Taxonomy Manager] PHP Notices’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/ultimate-taxonomy-manager.svg)
 * [Ultimate Taxonomy Manager](https://wordpress.org/plugins/ultimate-taxonomy-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/ultimate-taxonomy-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/ultimate-taxonomy-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/ultimate-taxonomy-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/ultimate-taxonomy-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/ultimate-taxonomy-manager/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [fireproofsocks](https://wordpress.org/support/users/fireproofsocks/)
 * Last activity: [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-ultimate-taxonomy-manager-php-notices/#post-1709237)
 * Status: resolved