<?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/"
		>
<channel>
	<title>Comments on: PHP Header(), Beyond Redirect</title>
	<atom:link href="http://17webshop.com/2009/12/04/php-header-beyond-redirect/feed/" rel="self" type="application/rss+xml" />
	<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/</link>
	<description>Web Design + Development</description>
	<lastBuildDate>Thu, 08 Jul 2010 00:52:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: hermes handbags</title>
		<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/comment-page-1/#comment-515</link>
		<dc:creator>hermes handbags</dc:creator>
		<pubDate>Thu, 08 Jul 2010 00:49:50 +0000</pubDate>
		<guid isPermaLink="false">http://17webshop.com/?p=390#comment-515</guid>
		<description>Content-Length is another header that should be used when prompting a user to download a file. This header defines the size of the file to be downloaded (in bytes) and is used by browsers when downloading files to tell the user how much of the download has completed. Have you ever noticed how sometimes your browser’s download manager will tell you how far a file download has progressed (something like “43% Complete”), and sometimes it will only say something to the effect of “458kb of ? have been transfered.” The culprit in this scenario is developers neglecting the implementation of the Content-Length header. In my opinion is a simple courtesy to include this header in your scripts involving file downloads.</description>
		<content:encoded><![CDATA[<p>Content-Length is another header that should be used when prompting a user to download a file. This header defines the size of the file to be downloaded (in bytes) and is used by browsers when downloading files to tell the user how much of the download has completed. Have you ever noticed how sometimes your browser’s download manager will tell you how far a file download has progressed (something like “43% Complete”), and sometimes it will only say something to the effect of “458kb of ? have been transfered.” The culprit in this scenario is developers neglecting the implementation of the Content-Length header. In my opinion is a simple courtesy to include this header in your scripts involving file downloads.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress Themes</title>
		<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/comment-page-1/#comment-487</link>
		<dc:creator>Wordpress Themes</dc:creator>
		<pubDate>Sun, 13 Jun 2010 19:47:57 +0000</pubDate>
		<guid isPermaLink="false">http://17webshop.com/?p=390#comment-487</guid>
		<description>Amiable post and this fill someone in on helped me alot in my college assignement. Say thank you you for your information.</description>
		<content:encoded><![CDATA[<p>Amiable post and this fill someone in on helped me alot in my college assignement. Say thank you you for your information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/comment-page-1/#comment-457</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Fri, 28 May 2010 20:32:51 +0000</pubDate>
		<guid isPermaLink="false">http://17webshop.com/?p=390#comment-457</guid>
		<description>Great article, use of headers in PHP is overlooked by most developers.</description>
		<content:encoded><![CDATA[<p>Great article, use of headers in PHP is overlooked by most developers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dima</title>
		<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/comment-page-1/#comment-435</link>
		<dc:creator>Dima</dc:creator>
		<pubDate>Sun, 02 May 2010 03:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://17webshop.com/?p=390#comment-435</guid>
		<description></description>
		<content:encoded><![CDATA[]]></content:encoded>
	</item>
	<item>
		<title>By: Burak</title>
		<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/comment-page-1/#comment-219</link>
		<dc:creator>Burak</dc:creator>
		<pubDate>Fri, 18 Dec 2009 23:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://17webshop.com/?p=390#comment-219</guid>
		<description>Here is an article I wrote on HTTP Headers:
http://net.tutsplus.com/tutorials/other/http-headers-for-dummies/</description>
		<content:encoded><![CDATA[<p>Here is an article I wrote on HTTP Headers:<br />
<a href="http://net.tutsplus.com/tutorials/other/http-headers-for-dummies/" rel="nofollow">http://net.tutsplus.com/tutorials/other/http-headers-for-dummies/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/comment-page-1/#comment-206</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sun, 13 Dec 2009 23:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://17webshop.com/?p=390#comment-206</guid>
		<description>A quick aside: I have noticed many coders do not include a call to exit() after header() is called. This isn’t necessary, but it is considered a best practice. In the event that your redirect fails, you will more than likely want to keep the rest of the script from executing.

You should always have exit(); after a header redirection as it can then become a security flaw. I have sucessfully gained access to a backend system because the developer didnt kill the script after he redirected the user to a failed login page.</description>
		<content:encoded><![CDATA[<p>A quick aside: I have noticed many coders do not include a call to exit() after header() is called. This isn’t necessary, but it is considered a best practice. In the event that your redirect fails, you will more than likely want to keep the rest of the script from executing.</p>
<p>You should always have exit(); after a header redirection as it can then become a security flaw. I have sucessfully gained access to a backend system because the developer didnt kill the script after he redirected the user to a failed login page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Henry</title>
		<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/comment-page-1/#comment-203</link>
		<dc:creator>Chris Henry</dc:creator>
		<pubDate>Sat, 12 Dec 2009 20:31:29 +0000</pubDate>
		<guid isPermaLink="false">http://17webshop.com/?p=390#comment-203</guid>
		<description>Great article, use of headers in PHP is overlooked by most developers.</description>
		<content:encoded><![CDATA[<p>Great article, use of headers in PHP is overlooked by most developers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WebShop.com Blog: PHP Header(), Beyond Redirect &#124; Development Blog With Code Updates : Developercast.com</title>
		<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/comment-page-1/#comment-200</link>
		<dc:creator>WebShop.com Blog: PHP Header(), Beyond Redirect &#124; Development Blog With Code Updates : Developercast.com</dc:creator>
		<pubDate>Fri, 11 Dec 2009 20:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://17webshop.com/?p=390#comment-200</guid>
		<description>[...] function in PHP applications is to do a redirect, but the webshop.com blog wants to remind you that there&#8217;s more to it than just that.   If you are a web developer and you&#8217;ve ever worked with PHP you have probably come across [...]</description>
		<content:encoded><![CDATA[<p>[...] function in PHP applications is to do a redirect, but the webshop.com blog wants to remind you that there&#8217;s more to it than just that.   If you are a web developer and you&#8217;ve ever worked with PHP you have probably come across [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WebShop.com Blog: PHP Header(), Beyond Redirect &#124; Webs Developer</title>
		<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/comment-page-1/#comment-190</link>
		<dc:creator>WebShop.com Blog: PHP Header(), Beyond Redirect &#124; Webs Developer</dc:creator>
		<pubDate>Thu, 10 Dec 2009 20:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://17webshop.com/?p=390#comment-190</guid>
		<description>[...] function in PHP applications is to do a redirect, but the webshop.com blog wants to remind you that there&#8217;s more to it than just that.   If you are a web developer and you&#8217;ve ever worked with PHP you have probably come across [...]</description>
		<content:encoded><![CDATA[<p>[...] function in PHP applications is to do a redirect, but the webshop.com blog wants to remind you that there&#8217;s more to it than just that.   If you are a web developer and you&#8217;ve ever worked with PHP you have probably come across [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PHP Header(), Beyond Redirect &#124; 17 Webshop &#124; Web Design + Development &#124; Coder Online</title>
		<link>http://17webshop.com/2009/12/04/php-header-beyond-redirect/comment-page-1/#comment-184</link>
		<dc:creator>PHP Header(), Beyond Redirect &#124; 17 Webshop &#124; Web Design + Development &#124; Coder Online</dc:creator>
		<pubDate>Thu, 10 Dec 2009 09:58:40 +0000</pubDate>
		<guid isPermaLink="false">http://17webshop.com/?p=390#comment-184</guid>
		<description>[...] Original post: PHP Header(), Beyond Redirect &#124; 17 Webshop &#124; Web Design + Development [...]</description>
		<content:encoded><![CDATA[<p>[...] Original post: PHP Header(), Beyond Redirect | 17 Webshop | Web Design + Development [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
