<?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 for Brightside Games</title>
	<atom:link href="http://blog.brightside-games.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.brightside-games.com</link>
	<description></description>
	<lastBuildDate>Thu, 29 Jul 2010 16:27:24 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Basic online high scores with XNA / C# and PHP / MYSQL by Burbruee</title>
		<link>http://blog.brightside-games.com/?p=125&#038;cpage=1#comment-1541</link>
		<dc:creator>Burbruee</dc:creator>
		<pubDate>Thu, 29 Jul 2010 16:27:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brightside-games.com/?p=125#comment-1541</guid>
		<description>Few problems while testing this from page 5 when starting to write actual code in C#.

First, in the webPost method. You write &lt;code&gt;responseString = null;&lt;/code&gt; which I had to change to &lt;code&gt;&lt;b&gt;string&lt;/b&gt; responseString = null;&lt;/code&gt;
Later on, I see &lt;code&gt;Console.WriteLine(&lt;b&gt;responseFromServer&lt;/b&gt;);&lt;/code&gt; but this &lt;b&gt;responseFromServer&lt;/b&gt; variable has not been declared. What is it? I changed it to responseString, not sure if that&#039;s what you meant or if you left something out. Then by the end of the method, there are two closing brackets, (but only one opening bracket in the method) I removed the one before the return value. Works fine.

So far so good. What I&#039;m not getting though is this:
&lt;code&gt;public &lt;b&gt;highscoreTable&lt;/b&gt; getScores(string modeid, string format)&lt;/code&gt;
this
&lt;code&gt;private &lt;b&gt;highscoreTable&lt;/b&gt; parseToHighscoreTable(string tableString)&lt;/code&gt;
and this
&lt;code&gt;return new &lt;b&gt;highscoreTable&lt;/b&gt;(ranks, names, infos, scores);&lt;/code&gt;
You appear to have a &quot;highscoreTable&quot; class? which is not explained at all in the article. 

It would be helpful if you could provide a full working sourcecode, or at least some answers to my questions. Thanks, I really like the article apart from the problems I&#039;m having.</description>
		<content:encoded><![CDATA[<p>Few problems while testing this from page 5 when starting to write actual code in C#.</p>
<p>First, in the webPost method. You write <code>responseString = null;</code> which I had to change to <code><b>string</b> responseString = null;</code><br />
Later on, I see <code>Console.WriteLine(<b>responseFromServer</b>);</code> but this <b>responseFromServer</b> variable has not been declared. What is it? I changed it to responseString, not sure if that&#8217;s what you meant or if you left something out. Then by the end of the method, there are two closing brackets, (but only one opening bracket in the method) I removed the one before the return value. Works fine.</p>
<p>So far so good. What I&#8217;m not getting though is this:<br />
<code>public <b>highscoreTable</b> getScores(string modeid, string format)</code><br />
this<br />
<code>private <b>highscoreTable</b> parseToHighscoreTable(string tableString)</code><br />
and this<br />
<code>return new <b>highscoreTable</b>(ranks, names, infos, scores);</code><br />
You appear to have a &#8220;highscoreTable&#8221; class? which is not explained at all in the article. </p>
<p>It would be helpful if you could provide a full working sourcecode, or at least some answers to my questions. Thanks, I really like the article apart from the problems I&#8217;m having.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automatic XNB Serialisation in XNA 3.1 by education info</title>
		<link>http://blog.brightside-games.com/?p=65&#038;cpage=1#comment-1537</link>
		<dc:creator>education info</dc:creator>
		<pubDate>Tue, 22 Jun 2010 10:52:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brightside-games.com/?p=65#comment-1537</guid>
		<description>Thanks very much, its very nice article, this was the one I am looking for. Thanks again.</description>
		<content:encoded><![CDATA[<p>Thanks very much, its very nice article, this was the one I am looking for. Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic online high scores with XNA / C# and PHP / MYSQL by Thomas Bedenk</title>
		<link>http://blog.brightside-games.com/?p=125&#038;cpage=1#comment-1442</link>
		<dc:creator>Thomas Bedenk</dc:creator>
		<pubDate>Mon, 29 Mar 2010 14:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brightside-games.com/?p=125#comment-1442</guid>
		<description>Thank you for this remark! It was in fact a typo. I corrected it in the text.</description>
		<content:encoded><![CDATA[<p>Thank you for this remark! It was in fact a typo. I corrected it in the text.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic online high scores with XNA / C# and PHP / MYSQL by William Arends</title>
		<link>http://blog.brightside-games.com/?p=125&#038;cpage=1#comment-1432</link>
		<dc:creator>William Arends</dc:creator>
		<pubDate>Sun, 14 Mar 2010 03:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brightside-games.com/?p=125#comment-1432</guid>
		<description>On the post code for the modeID your missing the _ it should be .$_POST[...]. , I had to fix this to get working for me sorry if someone already posted this typo=) it is above ModeID=&#039;&quot;.$POST[&quot;ModeID&quot;].   This is missing the _ . I am almost sure.</description>
		<content:encoded><![CDATA[<p>On the post code for the modeID your missing the _ it should be .$_POST[...]. , I had to fix this to get working for me sorry if someone already posted this typo=) it is above ModeID=&#8217;&#8221;.$POST["ModeID"].   This is missing the _ . I am almost sure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Volume in Xact3 by varundbest</title>
		<link>http://blog.brightside-games.com/?p=109&#038;cpage=1#comment-1426</link>
		<dc:creator>varundbest</dc:creator>
		<pubDate>Mon, 08 Mar 2010 23:54:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brightside-games.com/?p=109#comment-1426</guid>
		<description>Not bad! Although I don’t visit your blog much but I must say that you always post amazing information and the theme is quite good. Keep us updated mate! I love your blog and will keep on appreciating your effort every time I visit.</description>
		<content:encoded><![CDATA[<p>Not bad! Although I don’t visit your blog much but I must say that you always post amazing information and the theme is quite good. Keep us updated mate! I love your blog and will keep on appreciating your effort every time I visit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automatic XNB Serialisation in XNA 3.1 by Bejeweled Blitz Cheats</title>
		<link>http://blog.brightside-games.com/?p=65&#038;cpage=1#comment-1423</link>
		<dc:creator>Bejeweled Blitz Cheats</dc:creator>
		<pubDate>Thu, 25 Feb 2010 07:00:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brightside-games.com/?p=65#comment-1423</guid>
		<description>I want to thank the blogger very much not only for this post but also for his all previous efforts.</description>
		<content:encoded><![CDATA[<p>I want to thank the blogger very much not only for this post but also for his all previous efforts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Volume in Xact3 by Nanette</title>
		<link>http://blog.brightside-games.com/?p=109&#038;cpage=1#comment-990</link>
		<dc:creator>Nanette</dc:creator>
		<pubDate>Sun, 24 Jan 2010 11:23:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brightside-games.com/?p=109#comment-990</guid>
		<description>Hi. Very nice Blog. Not really what i have searched over Google, but thanks for the information.</description>
		<content:encoded><![CDATA[<p>Hi. Very nice Blog. Not really what i have searched over Google, but thanks for the information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic online high scores with XNA / C# and PHP / MYSQL by Fer</title>
		<link>http://blog.brightside-games.com/?p=125&#038;cpage=1#comment-948</link>
		<dc:creator>Fer</dc:creator>
		<pubDate>Fri, 22 Jan 2010 16:36:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brightside-games.com/?p=125#comment-948</guid>
		<description>well i know something about php, not very good but somthing i didn&#039;t just copy the code, i looked at it and i more or less understand what it does, ModeID entries are 1 for sure, and in your requesttes.htm modeid i write 1  for sure, it just write SERVER_ i will continue with the tut to see f it works at last but thankyou very much anyway, great tutorial</description>
		<content:encoded><![CDATA[<p>well i know something about php, not very good but somthing i didn&#8217;t just copy the code, i looked at it and i more or less understand what it does, ModeID entries are 1 for sure, and in your requesttes.htm modeid i write 1  for sure, it just write SERVER_ i will continue with the tut to see f it works at last but thankyou very much anyway, great tutorial</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic online high scores with XNA / C# and PHP / MYSQL by Thomas Bedenk</title>
		<link>http://blog.brightside-games.com/?p=125&#038;cpage=1#comment-931</link>
		<dc:creator>Thomas Bedenk</dc:creator>
		<pubDate>Fri, 22 Jan 2010 00:39:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brightside-games.com/?p=125#comment-931</guid>
		<description>I will try to find some time to look through the code, but we are currently very busy. Its hard to get these things completely right if you don&#039;t know at all about PHP, since there are some adjustments necessary to the code. If you only see SERVER_ returned that is an indication for no real errors, but missing database entries or empty query results. MAKE SURE that whatever you entered in your database entries as ModeID is also send in the query. So if you use requesttest.html to test the php file, what ever you enter in the field ModeID (a string) needs to be in that column of your database entries. Hope that helps. I corrected the }, thanks for that.</description>
		<content:encoded><![CDATA[<p>I will try to find some time to look through the code, but we are currently very busy. Its hard to get these things completely right if you don&#8217;t know at all about PHP, since there are some adjustments necessary to the code. If you only see SERVER_ returned that is an indication for no real errors, but missing database entries or empty query results. MAKE SURE that whatever you entered in your database entries as ModeID is also send in the query. So if you use requesttest.html to test the php file, what ever you enter in the field ModeID (a string) needs to be in that column of your database entries. Hope that helps. I corrected the }, thanks for that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Basic online high scores with XNA / C# and PHP / MYSQL by Fer</title>
		<link>http://blog.brightside-games.com/?p=125&#038;cpage=1#comment-930</link>
		<dc:creator>Fer</dc:creator>
		<pubDate>Thu, 21 Jan 2010 22:13:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.brightside-games.com/?p=125#comment-930</guid>
		<description>So useful, a } is needed at the end of requestscore.php, it returns a error, and i don&#039;t know why i made 2 entries on that table in my database and when i click get score it just returns SERVER_, i&#039;ve looked everything and i don&#039;t know what happens, revise the code please because i don&#039;t know neither php mysql and i can&#039;t see complex errors, but for some reason i doesn&#039;t work for me, could you help????</description>
		<content:encoded><![CDATA[<p>So useful, a } is needed at the end of requestscore.php, it returns a error, and i don&#8217;t know why i made 2 entries on that table in my database and when i click get score it just returns SERVER_, i&#8217;ve looked everything and i don&#8217;t know what happens, revise the code please because i don&#8217;t know neither php mysql and i can&#8217;t see complex errors, but for some reason i doesn&#8217;t work for me, could you help????</p>
]]></content:encoded>
	</item>
</channel>
</rss>
