<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Tech Off - Passing php variables via &amp;quot;a name&amp;quot; links - Help?</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Tech Off - Passing php variables via &amp;quot;a name&amp;quot; links - Help?</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Wed, 19 Jun 2013 04:22:28 GMT</pubDate>
	<lastBuildDate>Wed, 19 Jun 2013 04:22:28 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>7</c9:totalResults>
	<c9:pageCount>-7</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Tech Off - Passing php variables via &amp;quot;a name&amp;quot; links - Help?</title>
		<description><![CDATA[<p>I'm trying to write a website that is dependant on being able to make a name links...so....<br /><br />&lt;a href=&quot;foo.html&quot;&gt;foo&lt;/a&gt;<br />&lt;a href=&quot;#bar&quot;&gt;bar&lt;/a&gt;<br /><br />&lt;div name=&quot;bar&quot;&gt;<br />&lt;/div&gt;<br /><br />However I want the content inside the bar div to give php variable information....thus...<br /><br />I wanted to try to form my link as such...<br /><br />&lt;a href=&quot;#bar?var=value&quot;&gt;bar&lt;/a&gt;<br /><br />However it isn't working....any ideas?<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/262044#262044</link>
		<pubDate>Fri, 04 Apr 2008 05:17:25 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/262044#262044</guid>
		<dc:creator>Cybermagellan</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Cybermagellan/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Passing php variables via &amp;quot;a name&amp;quot; links - Help?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Cybermagellan wrote:</div>
<div class="quoteBody">
<p>&#65279;I wanted to try to form my link as such...</p>
<pre>&lt;a href=&quot;#bar?var=value&quot;&gt;bar&lt;/a&gt;</pre>
<p>However it isn't working....any ideas?</p>
</div>
</blockquote>
<p>Try:</p>
<pre>&lt;a href=&quot;?var=value#bar&quot;&gt;bar&lt;/a&gt;</pre></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/e7b725c0a76c46a6889f9dfa00c382a2#e7b725c0a76c46a6889f9dfa00c382a2</link>
		<pubDate>Fri, 04 Apr 2008 05:38:51 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/e7b725c0a76c46a6889f9dfa00c382a2#e7b725c0a76c46a6889f9dfa00c382a2</guid>
		<dc:creator>JChung2006</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/JChung2006/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Passing php variables via &amp;quot;a name&amp;quot; links - Help?</title>
		<description><![CDATA[<p>Browsers dont go back to the server when you give them an internal (&quot;#&quot;) link. Even when you think adding get-parameters would work, it often doesn't due to caching, so you can either<br /><br />a) Add random data to the end of the link:\<br />&nbsp;&lt;a href=&quot;mypage.php?important=data&amp;random=ahadhqw#internallink&quot;&gt;link&lt;/a&gt;<br />b) Use javascript nastyness:<br />&lt;a href=&quot;mypage.php#bob&quot; onclick=&quot;getdata('mypage.php')&quot;&gt;link&lt;/a&gt;<br /><br />If your php page returns a constant result (up to arguments) then the caching problem goes away, and you can just use ?get=args#internallink. Note that the ? must come before the #.<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/4bac9e2fb325497f85439dfa00c38324#4bac9e2fb325497f85439dfa00c38324</link>
		<pubDate>Fri, 04 Apr 2008 05:50:29 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/4bac9e2fb325497f85439dfa00c38324#4bac9e2fb325497f85439dfa00c38324</guid>
		<dc:creator>evildictaitor</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/evildictaitor/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Passing php variables via &amp;quot;a name&amp;quot; links - Help?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Cybermagellan wrote:</div>
<div class="quoteBody">&#65279;&lt;a href=&quot;#bar?var=value&quot;&gt;bar&lt;/a&gt;<br /></div>
</blockquote>
<br /><br />I've never actually used PHP before, so obviously, take this with a (huge) 3 carrot grain of salt, but it looks like your trying to get PHP to work
<b>within</b> a string constant.<br /><br />I'd have thought it would have been better to have PHP return the entire (computed) string instead. Just a thought.<br /><br /><b>EDIT:</b><br /><br />Oh stupid me. You mean from the client, passing data back to your server using URL variables.
<br /><br />In other words, that fact that the server is using PHP isn't significant. I was looking at it from the Server side, and thinking you were using some kind of wierd PHP shortcut syntax that I'd never seen before... move along, nothing to see here...
<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/87c1a153f0f9445d81fc9dfa00c38227#87c1a153f0f9445d81fc9dfa00c38227</link>
		<pubDate>Fri, 04 Apr 2008 06:52:45 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/87c1a153f0f9445d81fc9dfa00c38227#87c1a153f0f9445d81fc9dfa00c38227</guid>
		<dc:creator>RichardRudek</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/RichardRudek/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Passing php variables via &amp;quot;a name&amp;quot; links - Help?</title>
		<description><![CDATA[<p>Actually this was for an iPhone web app....and that wasn't working...as it turned out I'm just going to use PHP vars and create the page as needed.<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/3c4b0bccb7194324bf609dfa00c38362#3c4b0bccb7194324bf609dfa00c38362</link>
		<pubDate>Fri, 04 Apr 2008 17:38:09 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/3c4b0bccb7194324bf609dfa00c38362#3c4b0bccb7194324bf609dfa00c38362</guid>
		<dc:creator>Cybermagellan</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Cybermagellan/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Passing php variables via &amp;quot;a name&amp;quot; links - Help?</title>
		<description><![CDATA[<p><blockquote>
<div class="quoteAuthor">Cybermagellan wrote:</div>
<div class="quoteBody">&#65279;Actually this was for an iPhone web app....and that wasn't working...as it turned out I'm just going to use PHP vars and create the page as needed.</div>
</blockquote>
<br /><br />Just use $_SESSION<br /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/16abd7af629642b6a8359dfa00c383e0#16abd7af629642b6a8359dfa00c383e0</link>
		<pubDate>Fri, 04 Apr 2008 19:27:19 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/16abd7af629642b6a8359dfa00c383e0#16abd7af629642b6a8359dfa00c383e0</guid>
		<dc:creator>W3bbo</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/W3bbo/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Passing php variables via &amp;quot;a name&amp;quot; links - Help?</title>
		<description><![CDATA[<p>I'd rather be mauled by mosquitoes that write PHP....<br />...but&nbsp;it is interesting that Microsoft has taken the reigns. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-2.gif' alt='Big Smile' /></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/5ea601a612734d158d1d9dfa00c3845c#5ea601a612734d158d1d9dfa00c3845c</link>
		<pubDate>Sat, 05 Apr 2008 01:20:21 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/262044-Passing-php-variables-via-quota-namequot-links-Help/5ea601a612734d158d1d9dfa00c3845c#5ea601a612734d158d1d9dfa00c3845c</guid>
		<dc:creator>Mark Wisecarver</dc:creator>
		<slash:comments>7</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/wisemx/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>