Stripslashes all values in an array with PHP.
Here is a very simple function to run stripslashes on an array and all of its child arrays. The function below is for PHP 5 and takes a single argument which should consist of an array.
function unstrip_array($array){foreach($array as &$val){if(is_array($val)){$val = unstrip_array($val);}else{$val = stripslashes($val);}}return $array;}- Use the following to copy and paste the code.
It loops through all elements of the array and if an element is an array it calls itself on th the child array to an infinite depth. Of course this can cause memory problems if your arrays are dynamically created with an excessively large depth, but for most uses, it will function perfectly.
Wordpress How To: Easily make an admin panel for a plugin
I find the Admin panel the most tedious part of plugin development–even the slightest changes to the plugin requires major changes to the Admin panel, and it can be hard to remember every option you have in your plugin. However by following a few simple rules, your next Admin panel will be a breeze. Once you have the basic parts down, new options are just a cut and past away. One thing to note is that his Admin panel uses a few features that are best if repeated inside your plugin itself.
Please note that these same general techniques work outside of Wordpress also; the only thing that you would need to do is to change the way options are actually set. Also, I assume you already know HTML; this is not a basic HTML tutorial, but rather is a way to do a specific task.

