<?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>PHPSuperBLOG &#187; Redirect</title>
	<atom:link href="http://www.phpsuperblog.com/tag/redirect/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpsuperblog.com</link>
	<description>Learn PHP Together</description>
	<lastBuildDate>Fri, 30 Jul 2010 07:26:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>HTML form &#8211; submit to a new window</title>
		<link>http://www.phpsuperblog.com/html/html-form-submit-to-a-new-window/</link>
		<comments>http://www.phpsuperblog.com/html/html-form-submit-to-a-new-window/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 07:36:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[HTML form element]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[Submit-button]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=63</guid>
		<description><![CDATA[We use HTML form a lot for the user to input data and process those data from a PHP file, but with the standard code of a HTML form: &#60;form method=&#34;post&#34; name=&#34;bus&#34; action=&#34;afile.php&#34;&#62; &#60;input type=&#34;text&#34; name=&#34;atext&#34; /&#62; &#60;input type=&#34;submit&#34; value=&#34;submit&#34;/&#62; &#60;/form&#62; It will direct us to the php file in the same window and the [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/html/html-form-submit-to-a-new-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirect page using PHP function header()</title>
		<link>http://www.phpsuperblog.com/php/redirect-page-using-php-function-header/</link>
		<comments>http://www.phpsuperblog.com/php/redirect-page-using-php-function-header/#comments</comments>
		<pubDate>Wed, 21 May 2008 13:45:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Link]]></category>
		<category><![CDATA[PHP Function]]></category>
		<category><![CDATA[Redirect]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=44</guid>
		<description><![CDATA[In some cases, you might like to redirect the user to another page when the user enters a certain page, example like when the website is under maintenance and you might like to redirect the user once they reach the home page to a page saying that the website is under maintenance. To redirect to [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/redirect-page-using-php-function-header/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redirect Page with HTML meta tag</title>
		<link>http://www.phpsuperblog.com/html/redirect-page-with-html-meta-tag/</link>
		<comments>http://www.phpsuperblog.com/html/redirect-page-with-html-meta-tag/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 16:17:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[Redirect]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=375</guid>
		<description><![CDATA[We could redirect webpage by using HTML meta tag. The syntax of the meta is: &#60;META http-equiv=&#34;refresh&#34; content=&#34;0; url=http://www.phpsuperblog.com&#34;&#62; Attributes of the Meta: http-equiv=&#8221;refresh&#8221; : This is to tell the refresh the page. content=&#8221;0; url=http://www.phpsuperblog.com&#8221; : 2 things within the content attribute: 0 : this mean the page will refresh 0 second after loading, change [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/html/redirect-page-with-html-meta-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Refresh page with PHP function header()</title>
		<link>http://www.phpsuperblog.com/php/refresh-page-with-php-function-header/</link>
		<comments>http://www.phpsuperblog.com/php/refresh-page-with-php-function-header/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 15:06:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP Function]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[Refresh]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=69</guid>
		<description><![CDATA[Editor&#8217;s note: In my past post Redirect page using PHP function header(), I talked about how to redirect page with header() function. To refresh a page, by using the same function and redirect to the page to itself, then it has the refresh effect. In order to do so, we have to add another attribute [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/php/refresh-page-with-php-function-header/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
