<?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>HTTP_REFERRER &#8211; stoimen&#039;s web log</title>
	<atom:link href="/tag/http_referrer/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>on web development</description>
	<lastBuildDate>Tue, 13 Feb 2018 08:18:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.0.3</generator>
	<item>
		<title>HTTP_REFERRER in Zend Framework</title>
		<link>/2009/10/12/http_referrer-in-zend-framework/</link>
		<comments>/2009/10/12/http_referrer-in-zend-framework/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 14:01:22 +0000</pubDate>
		<dc:creator><![CDATA[Stoimen]]></dc:creator>
				<category><![CDATA[micro tutorial]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[HTTP_REFERRER]]></category>

		<guid isPermaLink="false">/?p=756</guid>
		<description><![CDATA[What is HTTP_REFERRER? If you need to know how called a PHP script, it is normally setup in the $_SERVER variable of HTTP_REFERRER, or simply $_SERVER['HTTP_REFERRER']; but in the same time this does not work the same way in Zend Framework, just because everything is passing by the index.php or a custom bootstrap! Unfortunately there&#8217;s &#8230; <a href="/2009/10/12/http_referrer-in-zend-framework/" class="more-link">Continue reading <span class="screen-reader-text">HTTP_REFERRER in Zend Framework</span> <span class="meta-nav">&#8594;</span></a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="/2009/10/27/zend-framework-custom-urls/" rel="bookmark" title="Zend Framework custom URLs">Zend Framework custom URLs </a></li>
<li><a href="/2010/07/19/zend-framework-cache-database-table-schemes/" rel="bookmark" title="Zend Framework: Cache Database Table Schemes">Zend Framework: Cache Database Table Schemes </a></li>
<li><a href="/2010/04/09/secure-forms-with-zend-framework/" rel="bookmark" title="Secure Forms with Zend Framework">Secure Forms with Zend Framework </a></li>
<li><a href="/2010/04/26/mysql-expressions-in-zend-framework/" rel="bookmark" title="MySQL Expressions in Zend Framework">MySQL Expressions in Zend Framework </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>What is HTTP_REFERRER?</p>
<p>If you need to know how called a PHP script, it is normally setup in the $_SERVER variable of HTTP_REFERRER, or simply</p>
<blockquote>
<pre>$_SERVER['HTTP_REFERRER'];</pre>
</blockquote>
<p>but in the same time this does not work the same way in Zend Framework, just because everything is passing by the index.php or a custom bootstrap!</p>
<p>Unfortunately there&#8217;s no so many resources online, however there is a solution, which seems to be pretty natural. You can just use this chuck of code:</p>
<blockquote>
<pre>$this-&gt;getRequest()-&gt;getHeader('REFERER');</pre>
</blockquote>
<p>and that&#8217;s all!</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="/2009/10/27/zend-framework-custom-urls/" rel="bookmark" title="Zend Framework custom URLs">Zend Framework custom URLs </a></li>
<li><a href="/2010/07/19/zend-framework-cache-database-table-schemes/" rel="bookmark" title="Zend Framework: Cache Database Table Schemes">Zend Framework: Cache Database Table Schemes </a></li>
<li><a href="/2010/04/09/secure-forms-with-zend-framework/" rel="bookmark" title="Secure Forms with Zend Framework">Secure Forms with Zend Framework </a></li>
<li><a href="/2010/04/26/mysql-expressions-in-zend-framework/" rel="bookmark" title="MySQL Expressions in Zend Framework">MySQL Expressions in Zend Framework </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>/2009/10/12/http_referrer-in-zend-framework/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
