<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</title>
	<link>http://www.phpmagicbook.com</link>
	<description>PHP AtoZ Reloaded, free php tutorials, free php downloads, php scripts, PHP tips</description>
	<lastBuildDate>Thu, 14 Jan 2010 20:13:02 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Htaccess Mod Rewrite Practical Essential Important Solutions &#8211; Update</title>
		<description><![CDATA[I have been experimenting with .htaccess a lot regarding with mod rewriting and URL rewriting and had a lot of difficulty finding the solutions regarding to exact problem I faced. This stuff is such a headache. I am feeling headache right now as I am typing after messing with a lot of .htaccess codes. Here [...]<p><a href="http://www.phpmagicbook.com/htaccess-mod-rewrite-practical-essential-important-solutions-update/">Htaccess Mod Rewrite Practical Essential Important Solutions &#8211; Update</a> is a post from: <a href="http://www.phpmagicbook.com">PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</a></p>
]]></description>
		<link>http://www.phpmagicbook.com/htaccess-mod-rewrite-practical-essential-important-solutions-update/</link>
			</item>
	<item>
		<title>Protect Hotlink the Right Way Using htaccess</title>
		<description><![CDATA[Protect hotlinking the right way. There are content stealers out there who will copy your links and images and display them at their websites in result of which you pay more for bandwidth. If you do not do it the right way, you can block google and feedburner also. Here is a code to do [...]<p><a href="http://www.phpmagicbook.com/protect-hotlink-the-right-way-using-htaccess/">Protect Hotlink the Right Way Using htaccess</a> is a post from: <a href="http://www.phpmagicbook.com">PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</a></p>
]]></description>
		<link>http://www.phpmagicbook.com/protect-hotlink-the-right-way-using-htaccess/</link>
			</item>
	<item>
		<title>Hide Ads from Admin at Blog</title>
		<description><![CDATA[You can trace which user is logged in. Users at WordPress have levels for access. Admin access level is 10. You can simply trace if the admin is logged in and hide ads from your blog so that admin may not see ads. If you are admin of a blog and post a lot then [...]<p><a href="http://www.phpmagicbook.com/hide-ads-from-admin-at-blog/">Hide Ads from Admin at Blog</a> is a post from: <a href="http://www.phpmagicbook.com">PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</a></p>
]]></description>
		<link>http://www.phpmagicbook.com/hide-ads-from-admin-at-blog/</link>
			</item>
	<item>
		<title>Change Default WordPress Gravatar in Comments</title>
		<description><![CDATA[If you use a plugin to add avatars to your blog, there might be a setting in the plugin’s options page for choosing the default avatar. If you use WordPress 2.5+, then you probably use a template tag like the following for your avatars.

&#60;?php echo get_avatar&#40; $comment, 32 &#41;; ?&#62;

You can easily modify this code [...]<p><a href="http://www.phpmagicbook.com/change-default-wordpress-gravatar-in-comments/">Change Default WordPress Gravatar in Comments</a> is a post from: <a href="http://www.phpmagicbook.com">PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</a></p>
]]></description>
		<link>http://www.phpmagicbook.com/change-default-wordpress-gravatar-in-comments/</link>
			</item>
	<item>
		<title>Only Allow Your IP to Access Website or Blog Admin</title>
		<description><![CDATA[If you are the only owner of any website or blog and want to protect your admin directory then you can allow that admin directory for just your IP and deny from all others. Here it is how.


# just allow my computer and my IP to access admin of this site
order deny,allow
deny from all
allow from [...]<p><a href="http://www.phpmagicbook.com/only-allow-your-ip-to-access-website-or-blog-admin/">Only Allow Your IP to Access Website or Blog Admin</a> is a post from: <a href="http://www.phpmagicbook.com">PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</a></p>
]]></description>
		<link>http://www.phpmagicbook.com/only-allow-your-ip-to-access-website-or-blog-admin/</link>
			</item>
	<item>
		<title>Hide WordPress WP-Admin Login Page</title>
		<description><![CDATA[Here is a code which you can use to hide your wp-admin screen. Change YOURSECRETWORDHERE to something else. It can be any word you want. Just make sure it&#8217;s unique and somewhat long. Make it, like, your pets name or something random. Change ADMINFOLDER to the new folder name you want. Letters, numbers, underscores, and [...]<p><a href="http://www.phpmagicbook.com/hide-wordpress-wp-admin-login-page/">Hide WordPress WP-Admin Login Page</a> is a post from: <a href="http://www.phpmagicbook.com">PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</a></p>
]]></description>
		<link>http://www.phpmagicbook.com/hide-wordpress-wp-admin-login-page/</link>
			</item>
	<item>
		<title>Enable Gravatar/Avatar at Your Website &#8211; Gravatar Image PHP Script</title>
		<description><![CDATA[You might have already created an account at gravatar (Globally Recognized Avatars) and enjoying your display picture or avatar at forums and blogs when you just post your comment with your email and there you are &#8212; it displays your avatar along with your comment. If you are a developer and you create websites &#8211; [...]<p><a href="http://www.phpmagicbook.com/enable-gravataravatar-at-your-website-gravatar-image-php-script/">Enable Gravatar/Avatar at Your Website &#8211; Gravatar Image PHP Script</a> is a post from: <a href="http://www.phpmagicbook.com">PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</a></p>
]]></description>
		<link>http://www.phpmagicbook.com/enable-gravataravatar-at-your-website-gravatar-image-php-script/</link>
			</item>
	<item>
		<title>Allow htaccess and Mod Rewrite in Wamp</title>
		<description><![CDATA[You must enable mod_rewrite before you can use it. If you want to enable it in httpd.conf, then use 
Options FollowSymLinks Fileinfo
or
Options SymLinksIfOwnerMatch Fileinfo
If you wish to enable mod_rewrite at the .htaccess level (i.e. only in certain (sub)directories within each vHost and not for all (sub)directories of each vHost), then you must set allowOverride Options [...]<p><a href="http://www.phpmagicbook.com/allow-htaccess-and-mod-rewrite-in-wamp/">Allow htaccess and Mod Rewrite in Wamp</a> is a post from: <a href="http://www.phpmagicbook.com">PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</a></p>
]]></description>
		<link>http://www.phpmagicbook.com/allow-htaccess-and-mod-rewrite-in-wamp/</link>
			</item>
	<item>
		<title>PHP Script Not Working &#8211; Solution</title>
		<description><![CDATA[Ever wondered that most of the PHP scripts you download, do not do anything. I mean you downloaded the PHP script, uploaded at your host or copied at localhost and when you run it, it will not display results. In most cases it happens. One reason might be that the script is not properly written. [...]<p><a href="http://www.phpmagicbook.com/php-script-not-working-solution/">PHP Script Not Working &#8211; Solution</a> is a post from: <a href="http://www.phpmagicbook.com">PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</a></p>
]]></description>
		<link>http://www.phpmagicbook.com/php-script-not-working-solution/</link>
			</item>
	<item>
		<title>Customizing WordPress Tags Cloud &#8211; A Guide</title>
		<description><![CDATA[
If you have already used some social networking website or you are a blogger then you definitely know what the tags are. WordPress offers Tags Cloud which can be customized the way you use it at your blog. By default WP Tag Cloud will generate limited number of tags in alphabetical order. Custom templates for [...]<p><a href="http://www.phpmagicbook.com/customizing-wordpress-tags-cloud-a-guide/">Customizing WordPress Tags Cloud &#8211; A Guide</a> is a post from: <a href="http://www.phpmagicbook.com">PHP Magic Book - Free PHP Scripts, Tutorials and Downloads</a></p>
]]></description>
		<link>http://www.phpmagicbook.com/customizing-wordpress-tags-cloud-a-guide/</link>
			</item>
</channel>
</rss>
