<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:series="http://unfoldingneurons.com/"
		>
<channel>
	<title>Comments on: WordPress How To:  Easily make an admin panel for a plugin</title>
	<atom:link href="http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html/feed" rel="self" type="application/rss+xml" />
	<link>http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html</link>
	<description>Anthology of Ideas is an archive of thoughts and form.</description>
	<lastBuildDate>Tue, 22 May 2012 08:32:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: RChea</title>
		<link>http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html/comment-page-1#comment-77440</link>
		<dc:creator>RChea</dc:creator>
		<pubDate>Mon, 23 May 2011 15:24:52 +0000</pubDate>
		<guid isPermaLink="false">http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html#comment-77440</guid>
		<description>thanks :D, so useful to me.</description>
		<content:encoded><![CDATA[<p>thanks <img src='http://anthologyoi.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> , so useful to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neha</title>
		<link>http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html/comment-page-1#comment-60578</link>
		<dc:creator>Neha</dc:creator>
		<pubDate>Wed, 09 Feb 2011 00:44:47 +0000</pubDate>
		<guid isPermaLink="false">http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html#comment-60578</guid>
		<description>Wow, awesome blog layout! How long have you been blogging for? you make blogging look easy. The overall look of your site is magnificent, let alone the content!</description>
		<content:encoded><![CDATA[<p>Wow, awesome blog layout! How long have you been blogging for? you make blogging look easy. The overall look of your site is magnificent, let alone the content!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Donna</title>
		<link>http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html/comment-page-1#comment-60343</link>
		<dc:creator>Donna</dc:creator>
		<pubDate>Sun, 06 Feb 2011 01:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html#comment-60343</guid>
		<description>I&#039;m not sure where you&#039;re getting your info, but great topic. I needs to spend some time learning more or understanding more. Thanks for wonderful information I was looking for this information for my mission.</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure where you&#8217;re getting your info, but great topic. I needs to spend some time learning more or understanding more. Thanks for wonderful information I was looking for this information for my mission.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tina</title>
		<link>http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html/comment-page-1#comment-60341</link>
		<dc:creator>Tina</dc:creator>
		<pubDate>Sun, 06 Feb 2011 01:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html#comment-60341</guid>
		<description>I&#039;m really impressed with your writing skills and also with the layout on your blog. Is this a paid theme or did you modify it yourself? Anyway keep up the excellent quality writing, it&#039;s rare to see a great blog like this one today..</description>
		<content:encoded><![CDATA[<p>I&#8217;m really impressed with your writing skills and also with the layout on your blog. Is this a paid theme or did you modify it yourself? Anyway keep up the excellent quality writing, it&#8217;s rare to see a great blog like this one today..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabrizio Gargiulo</title>
		<link>http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html/comment-page-1#comment-54957</link>
		<dc:creator>Fabrizio Gargiulo</dc:creator>
		<pubDate>Mon, 17 May 2010 11:40:34 +0000</pubDate>
		<guid isPermaLink="false">http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html#comment-54957</guid>
		<description>I think I found an error. In your example you try to update a variable never initialized before, i&#039;m talking about $mypluginall.
This means that every time you update a field, you&#039;ll be able to see the new value in the page, but the next time you open that page you won&#039;t see anything.

The solution I suggest is to make this little change:

&lt;code&gt;$mypluginall = get_option(&#039;myplugin&#039;);

if ($_POST[&quot;action&quot;] == &quot;saveconfiguration&quot;) {

[...]&lt;/code&gt;

Let me know if mine is a valid solution or I just missed something.</description>
		<content:encoded><![CDATA[<p>I think I found an error. In your example you try to update a variable never initialized before, i&#8217;m talking about $mypluginall.<br />
This means that every time you update a field, you&#8217;ll be able to see the new value in the page, but the next time you open that page you won&#8217;t see anything.</p>
<p>The solution I suggest is to make this little change:</p>
<pre>$mypluginall = get_option(&#039;myplugin&#039;);

if ($_POST[&quot;action&quot;] == &quot;saveconfiguration&quot;) {

[...]</pre>
<p>Let me know if mine is a valid solution or I just missed something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dompie</title>
		<link>http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html/comment-page-1#comment-49239</link>
		<dc:creator>dompie</dc:creator>
		<pubDate>Wed, 02 Sep 2009 21:06:30 +0000</pubDate>
		<guid isPermaLink="false">http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html#comment-49239</guid>
		<description>Hello unmentioned author of this howto,

thanks a lot for your examples ans explenations, it really helped me a lot to write my first plugin.

regards
dompie</description>
		<content:encoded><![CDATA[<p>Hello unmentioned author of this howto,</p>
<p>thanks a lot for your examples ans explenations, it really helped me a lot to write my first plugin.</p>
<p>regards<br />
dompie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress How To: Easily make an admin panel for a plugin</title>
		<link>http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html/comment-page-1#comment-20161</link>
		<dc:creator>Wordpress How To: Easily make an admin panel for a plugin</dc:creator>
		<pubDate>Fri, 21 Mar 2008 00:00:19 +0000</pubDate>
		<guid isPermaLink="false">http://anthologyoi.com/wordpress/wordpress-how-to-easily-make-an-admin-panel-for-a-plugin.html#comment-20161</guid>
		<description>[...] Wordpress How To: Easily make an admin panel for a plugin     Uncategorized [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress How To: Easily make an admin panel for a plugin     Uncategorized [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

