<?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"
	>
<channel>
	<title>Comments on: WAAAAAAAAAAAAAAAAAAA!</title>
	<atom:link href="http://www.penguinbros.com/2006/02/04/waaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhh/feed" rel="self" type="application/rss+xml" />
	<link>http://www.penguinbros.com/2006/02/04/waaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhh</link>
	<description></description>
	<pubDate>Wed, 19 Nov 2008 11:42:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Purple Penguin</title>
		<link>http://www.penguinbros.com/2006/02/04/waaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhh#comment-34</link>
		<dc:creator>Purple Penguin</dc:creator>
		<pubDate>Tue, 07 Feb 2006 03:09:01 +0000</pubDate>
		<guid isPermaLink="false">http://penguinbros.com/home/?p=56#comment-34</guid>
		<description>Your face is rife with spelling errors.</description>
		<content:encoded><![CDATA[<p>Your face is rife with spelling errors.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Red Penguin</title>
		<link>http://www.penguinbros.com/2006/02/04/waaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhh#comment-33</link>
		<dc:creator>Red Penguin</dc:creator>
		<pubDate>Tue, 07 Feb 2006 03:00:15 +0000</pubDate>
		<guid isPermaLink="false">http://penguinbros.com/home/?p=56#comment-33</guid>
		<description>JANGA!!!!!</description>
		<content:encoded><![CDATA[<p>JANGA!!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jesterball</title>
		<link>http://www.penguinbros.com/2006/02/04/waaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhh#comment-32</link>
		<dc:creator>jesterball</dc:creator>
		<pubDate>Mon, 06 Feb 2006 22:36:52 +0000</pubDate>
		<guid isPermaLink="false">http://penguinbros.com/home/?p=56#comment-32</guid>
		<description>It's "Jenga," nab.</description>
		<content:encoded><![CDATA[<p>It&#8217;s &#8220;Jenga,&#8221; nab.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Red Penguin</title>
		<link>http://www.penguinbros.com/2006/02/04/waaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhh#comment-31</link>
		<dc:creator>Red Penguin</dc:creator>
		<pubDate>Sat, 04 Feb 2006 20:12:08 +0000</pubDate>
		<guid isPermaLink="false">http://penguinbros.com/home/?p=56#comment-31</guid>
		<description>&lt; ?php

	$winscore = (int)$winscore;

	// Create a Blank File if it doesn't already exist
	if (!file_exists($filename))
	{
		$file=fopen($filename, "w");
		fclose ($file);
	}

	// Read the file in
	$oscores = file ($filename);
	$numreadin = count($oscores);

	// Break out the data into a new 2-d array called $tscores
	for ($i = 0; $i &lt; $numreadin; $i++)
	{
		$g = unserialize($oscores[$i]);
		$tscores[$i][0] = $g[0];
		$tscores[$i][1] = $g[1];
	}

	// Fill in any missing data with none/0
	for ($i = $numreadin; $i &lt; $scoresize; $i++)
	{
		$tscores[$i][0] = 0;
		$tscores[$i][1] = "";
	}

	// Process the actions	

	// Insert a score/name
	if ($action == "INSERT")
	{

		// Add name to end of list, and sort
		$tscores[$scoresize + 1][0] = $winscore;
		$tscores[$scoresize + 1][1] = $winname;
		rsort ($tscores);

		$file=fopen($filename, "w");

		// Write them out
		for ($i = 0; $i &lt; $scoresize; $i++)
		{
			$st = serialize($tscores[$i]) . "\n";
			fputs($file, $st);
		}

		fclose($file);
	}

	// Clear the list	
	if ($action == "CLEAR")
	{

		$k[0] = 0;
		$k[1] = "no-one";
		$ser = serialize($k);

		$file=fopen($filename, "w");

		for ($i = 0; $i &lt; $scoresize; $i++)
		{
			$st = $ser . "\n";
			fputs($file, $st);
		}

		fclose($file);
	}

	// Process the OUTPUT options
	if ($viewtype == "HTML")
	{
	  // HTML PAGE CREATED HERE ( °O°)
	  ?&gt;


		
&lt;table cellpadding=2 cellspacing=2 border=0 width="330"&gt;
  &lt;tr align=center&gt; 
    &lt;th bgcolor="#663300" width="80"&gt;&lt;font color="#ffff00" face="Arial, Helvetica, sans-serif" size="1"&gt;Rank&lt;/font&gt;&lt;/th&gt;
    &lt;th bgcolor="#663300" width="126"&gt;&lt;font color="#FFFF00" face="Arial, Helvetica, sans-serif" size="1"&gt;Name&lt;/font&gt;&lt;/th&gt;
    &lt;th bgcolor="#663300" width="104"&gt;&lt;font color="#FFFF00" face="Arial, Helvetica, sans-serif" size="1"&gt;Score&lt;/font&gt;&lt;/th&gt;
  &lt;/tr&gt;
  &lt; ?
	
		for ($i = 0; $i &lt; $scoresize; $i++)
		{
			echo ("&lt;tr bgcolor='#669933' align='center'&gt;&lt;td&gt;&lt;font size='1' face='Arial, Helvetica, sans-serif'&gt;");
			echo ($i + 1);
			echo ("&lt;/font&gt;&lt;/td&gt;&lt;td&gt;&lt;font size='1' face='Arial, Helvetica, sans-serif'&gt;");
			echo ($tscores[$i][1]);
			echo ("&lt;/font&gt;&lt;/td&gt;&lt;td&gt;&lt;font size='1' face='Arial, Helvetica, sans-serif'&gt;");
			echo ($tscores[$i][0]);
			echo ("&lt;/font&gt;&lt;/td&gt;");
		}

  	  ?&gt;
&lt;/table&gt;
	  &lt; ?

	}

	// FLASH DATA INCERTED HERE HERE XDD!
	if ($viewtype == "FLASH")
	{
		for ($i = 0; $i &lt; $scoresize; $i++)
		{
			echo ("NAME" . $i . "=");
			echo ($tscores[$i][1]);
			echo ("&#038;SCORE" . $i . "=");
			echo ($tscores[$i][0]);
			echo ("&#038;");
		}
	}

?&gt;


//////it says the error is on line 9 and that it is having to do with the fclose ($file) funstion.</description>
		<content:encoded><![CDATA[<p>< ?php</p>
<p>	$winscore = (int)$winscore;</p>
<p>	// Create a Blank File if it doesn't already exist<br />
	if (!file_exists($filename))<br />
	{<br />
		$file=fopen($filename, "w");<br />
		fclose ($file);<br />
	}</p>
<p>	// Read the file in<br />
	$oscores = file ($filename);<br />
	$numreadin = count($oscores);</p>
<p>	// Break out the data into a new 2-d array called $tscores<br />
	for ($i = 0; $i < $numreadin; $i++)<br />
	{<br />
		$g = unserialize($oscores[$i]);<br />
		$tscores[$i][0] = $g[0];<br />
		$tscores[$i][1] = $g[1];<br />
	}</p>
<p>	// Fill in any missing data with none/0<br />
	for ($i = $numreadin; $i < $scoresize; $i++)<br />
	{<br />
		$tscores[$i][0] = 0;<br />
		$tscores[$i][1] = "";<br />
	}</p>
<p>	// Process the actions	</p>
<p>	// Insert a score/name<br />
	if ($action == "INSERT")<br />
	{</p>
<p>		// Add name to end of list, and sort<br />
		$tscores[$scoresize + 1][0] = $winscore;<br />
		$tscores[$scoresize + 1][1] = $winname;<br />
		rsort ($tscores);</p>
<p>		$file=fopen($filename, "w");</p>
<p>		// Write them out<br />
		for ($i = 0; $i < $scoresize; $i++)<br />
		{<br />
			$st = serialize($tscores[$i]) . "\n";<br />
			fputs($file, $st);<br />
		}</p>
<p>		fclose($file);<br />
	}</p>
<p>	// Clear the list<br />
	if ($action == "CLEAR")<br />
	{</p>
<p>		$k[0] = 0;<br />
		$k[1] = "no-one";<br />
		$ser = serialize($k);</p>
<p>		$file=fopen($filename, "w");</p>
<p>		for ($i = 0; $i < $scoresize; $i++)<br />
		{<br />
			$st = $ser . "\n";<br />
			fputs($file, $st);<br />
		}</p>
<p>		fclose($file);<br />
	}</p>
<p>	// Process the OUTPUT options<br />
	if ($viewtype == "HTML")<br />
	{<br />
	  // HTML PAGE CREATED HERE ( °O°)<br />
	  ?></p>
<table cellpadding=2 cellspacing=2 border=0 width="330">
<tr align=center>
<th bgcolor="#663300" width="80"><font color="#ffff00" face="Arial, Helvetica, sans-serif" size="1">Rank</font></th>
<th bgcolor="#663300" width="126"><font color="#FFFF00" face="Arial, Helvetica, sans-serif" size="1">Name</font></th>
<th bgcolor="#663300" width="104"><font color="#FFFF00" face="Arial, Helvetica, sans-serif" size="1">Score</font></th>
</tr>
<p>  < ?</p>
<p>		for ($i = 0; $i < $scoresize; $i++)<br />
		{<br />
			echo ("<br />
<tr bgcolor='#669933' align='center'>
<td><font size='1' face='Arial, Helvetica, sans-serif'>&#8220;);<br />
			echo ($i + 1);<br />
			echo (&#8221;</font></td>
<td><font size='1' face='Arial, Helvetica, sans-serif'>&#8220;);<br />
			echo ($tscores[$i][1]);<br />
			echo (&#8221;</font></td>
<td><font size='1' face='Arial, Helvetica, sans-serif'>&#8220;);<br />
			echo ($tscores[$i][0]);<br />
			echo (&#8221;</font></td>
<p>&#8220;);<br />
		}</p>
<p>  	  ?><br />
</table>
<p>	  < ?</p>
<p>	}</p>
<p>	// FLASH DATA INCERTED HERE HERE XDD!<br />
	if ($viewtype == "FLASH")<br />
	{<br />
		for ($i = 0; $i < $scoresize; $i++)<br />
		{<br />
			echo ("NAME" . $i . "=");<br />
			echo ($tscores[$i][1]);<br />
			echo ("&#038;SCORE" . $i . "=");<br />
			echo ($tscores[$i][0]);<br />
			echo ("&#038;");<br />
		}<br />
	}</p>
<p>?></p>
<p>//////it says the error is on line 9 and that it is having to do with the fclose ($file) funstion.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
