<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AllScoop &#187; php code</title>
	<atom:link href="http://www.allscoop.com/category/php-code/feed" rel="self" type="application/rss+xml" />
	<link>http://www.allscoop.com</link>
	<description>Gadgets - PHP Code - ASP Code - Web Tools - Technology</description>
	<lastBuildDate>Tue, 27 Dec 2011 15:31:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>timthumb</title>
		<link>http://www.allscoop.com/timthumb.php</link>
		<comments>http://www.allscoop.com/timthumb.php#comments</comments>
		<pubDate>Wed, 17 Aug 2011 02:52:36 +0000</pubDate>
		<dc:creator>allscoop</dc:creator>
				<category><![CDATA[php code]]></category>
		<category><![CDATA[thumb.php]]></category>
		<category><![CDATA[timthumb]]></category>

		<guid isPermaLink="false">http://www.allscoop.com/?p=1182</guid>
		<description><![CDATA[If you run WordPress, you may find out the hard way what timthumb.php is&#8230; This was/is a vulerable zero-day exploitable file that is right now sitting on probably thousands, or even hundreds of thousands of websites&#8230; This is going to &#8230; <a href="http://www.allscoop.com/timthumb.php">Continue reading <span class="meta-nav">&#8594;</span></a><p>a</p>
]]></description>
			<content:encoded><![CDATA[<p>If you run WordPress, you may find out the hard way what timthumb.php is&#8230; </p>
<p><strong>This was/is a vulerable zero-day exploitable file that is right now sitting on probably thousands, or even hundreds of thousands of websites&#8230; </strong></p>
<p>This is going to wreck havoc across the web. </p>
<p>If you are using a wordpress theme other than a default there, run right now to find out if you are using timthumb, it might be timthumb.php or thumb.php, if you do, <strong>I suggest you delete it NOW, and then go find the updated version</strong>.</p>
<p>http://timthumb.googlecode.com/svn/trunk/timthumb.php</p>
<p>Just look at the <a href="http://www.google.com/trends?q=timthumb">google trend for timthumb</a> and the <a href="http://www.google.com/trends?q=timthumb.php&#038;ctab=0&#038;geo=all&#038;date=all&#038;sort=0">trend for timthumb.php</a></p>
<p>a</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allscoop.com/timthumb.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show users IP in a graphic &#8211; PHP Script</title>
		<link>http://www.allscoop.com/phpcode.php</link>
		<comments>http://www.allscoop.com/phpcode.php#comments</comments>
		<pubDate>Wed, 15 Oct 2008 00:54:18 +0000</pubDate>
		<dc:creator>allscoop</dc:creator>
				<category><![CDATA[php code]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.allscoop.com/?p=1061</guid>
		<description><![CDATA[Show IP Display visitor&#8217;s IP Address in a graphic with this simple php code. (Please do not link to this image, it is for demonstration only.) create a new page, copy the text below and save it as image.php (or &#8230; <a href="http://www.allscoop.com/phpcode.php">Continue reading <span class="meta-nav">&#8594;</span></a><p>a</p>
]]></description>
			<content:encoded><![CDATA[<p><strong>Show IP</strong><br />
Display visitor&#8217;s IP Address in a graphic with this simple php code.</p>
<p><small>(Please do not link to this image, it is for demonstration only.)</small> </p>
<p><img src="/image.php" alt="Your IP Address" border="1"> </p>
<p>create a new page, copy the text below and save it as image.php (or whatever you wish)</p>
<p><iframe src="/textfiles/phpimagecode.txt" width="500" height="240" frameborder="0"></iframe> </p>
<p>All you&#8217;ll need to display on other pages is the code below.</p>
<p>&lt;img src=&#8221;http://yoursitehere.com/image.php&#8221; border=&#8221;1&#8243;&gt;</p>
<p><small>note: this code will only on systems that support GD image tools</small><br />
 </p>
<p>a</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allscoop.com/phpcode.php/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Terra Firma Theme Fix</title>
		<link>http://www.allscoop.com/terra-firma-theme-fix.php</link>
		<comments>http://www.allscoop.com/terra-firma-theme-fix.php#comments</comments>
		<pubDate>Fri, 12 Oct 2007 15:51:48 +0000</pubDate>
		<dc:creator>allscoop</dc:creator>
				<category><![CDATA[php code]]></category>
		<category><![CDATA[terra firma]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.allscoop.com/terra-firma-theme-fix.php</guid>
		<description><![CDATA[Error in your WordPress after upgrade to 2.3 like array_key_exists() Change in the terra firma theme index.php &#60;?php if ( in_category($AsideId) &#38;&#38; !is_single() ) : ?&#62; To This: &#60;?php if ( $AsideID != '' &#38;&#38; in_category($AsideId) &#38;&#38; !is_single() ) : &#8230; <a href="http://www.allscoop.com/terra-firma-theme-fix.php">Continue reading <span class="meta-nav">&#8594;</span></a><p>a</p>
]]></description>
			<content:encoded><![CDATA[<p>Error in your WordPress after upgrade to 2.3 like <em>array_key_exists()</em><br />
Change in the terra firma theme <strong>index.php</strong><br />
<code>&lt;?php if ( in_category($AsideId) &amp;&amp; !is_single() ) : ?&gt;</code></p>
<p>To This:</p>
<p><code>&lt;?php if ( $AsideID != '' &amp;&amp; in_category($AsideId) &amp;&amp; !is_single() ) : ?&gt;</code></p>
<p>a</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allscoop.com/terra-firma-theme-fix.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Proper Redirect for Search Engines</title>
		<link>http://www.allscoop.com/php-proper-redirect-for-search-engines.php</link>
		<comments>http://www.allscoop.com/php-proper-redirect-for-search-engines.php#comments</comments>
		<pubDate>Mon, 05 Mar 2007 15:47:11 +0000</pubDate>
		<dc:creator>allscoop</dc:creator>
				<category><![CDATA[php code]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.allscoop.com/php-proper-redirect-for-search-engines.php</guid>
		<description><![CDATA[How to do a permanent redirect using PHP. Place this code at the top of your PHP page. header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.example.com/otherpage.php"); exit(); a<p>a</p>
]]></description>
			<content:encoded><![CDATA[<p>How to do a <strong>permanent </strong>redirect using PHP.</p>
<p>Place this code at the top of your PHP page.</p>
<p><code><br />
header("HTTP/1.1 301 Moved Permanently");<br />
header("Location: http://www.example.com/otherpage.php");<br />
exit();<br />
</code></p>
<p>a</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allscoop.com/php-proper-redirect-for-search-engines.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free PHP Code</title>
		<link>http://www.allscoop.com/free-php-code.php</link>
		<comments>http://www.allscoop.com/free-php-code.php#comments</comments>
		<pubDate>Thu, 01 Feb 2007 14:58:02 +0000</pubDate>
		<dc:creator>allscoop</dc:creator>
				<category><![CDATA[php code]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.allscoop.com/free-php-code.php</guid>
		<description><![CDATA[Mailing List Software Project Management Software Billing Software Dispatch Software Job Costing Software Expense Report Software Real Estate Website PHP Version Car Dealer Website Free Maintenance Software Free MySQL/PHP Online Content Management System Basic Content Management with PHP/MySQL Recruitment Agency &#8230; <a href="http://www.allscoop.com/free-php-code.php">Continue reading <span class="meta-nav">&#8594;</span></a><p>a</p>
]]></description>
			<content:encoded><![CDATA[<p>
<ul>
<li><a title="Mailing List Software" href="http://mailing-list.us" target="_blank">Mailing List Software</a></li>
<li><a title="Project Management Software" href="http://phpproject.us" target="_blank"> Project Management Software</a></li>
<li><a title="Billing Software" href="http://www.billing-software.us" target="_blank">Billing Software</a></li>
<li><a title="Dispatch Software" href="http://dispatch-software.org" target="_blank">Dispatch Software</a></li>
<li><a title="Job Costing Software" href="http://Job-costing-software.org" target="_blank">Job Costing Software</a></li>
<li><a title="Expense Report Software" href="http://expense-report-software.org" target="_blank">Expense Report Software</a></li>
<li><a href="http://real-estate-management-software.org" target="_blank">Real Estate Website PHP Version</a></li>
<li><a title="Expense Report Software" href="http://car-dealer-website.org" target="_blank">Car Dealer Website</a></li>
<li><a title="Maintenance Software" href="http://www.maintenance-software.org" target="_blank">Free Maintenance Software</a></li>
<li><a title="Online Content Management" href="http://www.online-content-management.com" target="_blank">Free MySQL/PHP Online Content Management System</a></li>
<li><a title="Basic Content Management with PHP/MySQL" href="http://www.content-management-software.us/" target="_blank">Basic Content Management with PHP/MySQL</a></li>
<li><a title="Recruitment Agency Software" href="http://www.recruitment-agency-software.com/" target="_blank">Recruitment Agency Software</a></li>
<li><a title="Web Content Management" href="http://www.web-content-management.us" target="_blank">Free MySQL/PHP Content Management News System</a></li>
<li><a title="Free Content Management" href="http://www.free-content-management.com" target="_blank">Free PHP Content Management</a></li>
<li><a title="network management" href="http://www.network-management-tool.org" target="_blank">Network Management</a></li>
<li><a title="MySQL and PHP Simple Content Management" href="http://www.cms-center.com" target="_blank">Simple Content Management</a></li>
<li><a title="Display Visitors IP in a dynamic graphic" href="/phpcode.php">Display visitors IP in a dynamic graphic</a></li>
</ul>
<p>a</p>
]]></content:encoded>
			<wfw:commentRss>http://www.allscoop.com/free-php-code.php/feed</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
	</channel>
</rss>

