<?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>Jake Siegers</title>
	<atom:link href="http://jakesiegers.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jakesiegers.com</link>
	<description>Web Development</description>
	<lastBuildDate>Tue, 01 May 2012 19:44:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Prepare Yourself.</title>
		<link>http://jakesiegers.com/2012/05/01/prepare-yourself/</link>
		<comments>http://jakesiegers.com/2012/05/01/prepare-yourself/#comments</comments>
		<pubDate>Tue, 01 May 2012 19:43:28 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Updates!]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[New]]></category>
		<category><![CDATA[omg]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://jakesiegers.com/?p=435</guid>
		<description><![CDATA[There are changes coming to the portfolio page. And This Blog. And This Site. This Summer Oh yeah :3]]></description>
			<content:encoded><![CDATA[<p>There are changes coming to the portfolio page.</p>
<p>And This Blog.</p>
<p>And This Site.</p>
<p>This Summer</p>
<p>Oh yeah :3</p>
]]></content:encoded>
			<wfw:commentRss>http://jakesiegers.com/2012/05/01/prepare-yourself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting PHP to MYSQL</title>
		<link>http://jakesiegers.com/2012/04/20/connecting-php-to-mysql/</link>
		<comments>http://jakesiegers.com/2012/04/20/connecting-php-to-mysql/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 04:58:06 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Coding]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://jakesiegers.com/?p=418</guid>
		<description><![CDATA[Hey People! I just finished this little PHP example my Dad asked for, and I thought it would be a good idea to post it on my blog! It basically is an example of connecting to a MYSQL database with PHP. It inputs data into the database, and displays data from the database. I&#8217;ve commented [...]]]></description>
			<content:encoded><![CDATA[<p>Hey People! I just finished this little PHP example my Dad asked for, and I thought it would be a good idea to post it on my blog! It basically is an example of connecting to a MYSQL database with PHP. It inputs data into the database, and displays data from the database. I&#8217;ve commented the code as much as I could. If you have any questions, feel free to leave me a comment!</p>
<p><span id="more-418"></span></p>
<pre name="code" class="php">
&lt;?php
//Generic PHP/MYSQL database connection and data transfer example
//Jake Siegers - 4/19/2012

//For my example, I have a database called 'test' and a table called 'words'. 'words' has 2 columns: 'id'-type int(AUTO_INCREMENT) and 'word'- type text

//Database Info
//==============
$location="localhost"; //location of MYSQL. It's usually 'localhost'
$user="root"; //username to your MYSQL server
$pass="******"; //password to your MYSQL server
$database="test"; //name of the database you want to connect to
//==============
$link = mysql_connect($location, $user, $pass); //creating connection to our database
if(!$link) //if for some reason, we get an error, kill the program.
{
	//gah! something went wrong! Displaying error!
	die(mysql_error());
}
echo'Connected to MYSQL&lt;br />'; //Yay, connected to MYSQL!

if(!mysql_select_db($database, $link)) //selecting the database we want to connect to. Also checking to see if it doesn't return an error
{
	//gah! something went wrong! Displaying error!
   die(mysql_error());
}
echo'Connected to database: '.$database.'&lt;br />'; //Yay, connected to MYSQL!
echo'----------&lt;br />';

if(isset($_POST['data'])) //Checking to see if the form was completed. If it was, we have data to put into the database
{
	echo'Adding the word \''.$_POST['data'].'\' to the database&lt;br />';
	$data=addslashes($_POST['data']); // the addshashes() function will escape characters so the database can accept them.
   $query=mysql_query("INSERT INTO words (word) VALUE ('{$data}')");
	if(!$query)
   {
   	//gah! something went wrong! Displaying error!
   	die(mysql_error());
   }
	echo'Success!&lt;br />';
	echo'----------&lt;br />';
}

//showing the form
echo'Would you like to add a word to the database?&lt;br />'; //prompt user
echo'&lt;form action="" method="POST">'; //creating a form using POST submission
echo'&lt;input type="text" name="data" size="10"/>';
echo'&lt;input type="submit" value="Submit" />';
echo'&lt;/form>';
echo'----------&lt;br />';
echo'Current words in database:&lt;br />';
$result = mysql_query("SELECT id,word FROM words");
if(!$result)
{
	//gah! something went wrong! Displaying error!
   die(mysql_error());
}
while($array = mysql_fetch_assoc($result)) //while it's not empty
{
	echo'id: '.$array['id'].' Word: '.$array['word'].'&lt;br />'; //print out word and id
}
echo'----------&lt;br />';

mysql_close($link); //Closing connection to database
?>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://jakesiegers.com/2012/04/20/connecting-php-to-mysql/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to set up Apache and PHP</title>
		<link>http://jakesiegers.com/2012/03/31/how-to-set-up-apache-and-php/</link>
		<comments>http://jakesiegers.com/2012/03/31/how-to-set-up-apache-and-php/#comments</comments>
		<pubDate>Sat, 31 Mar 2012 00:45:25 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Coding]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://jakesiegers.com/?p=402</guid>
		<description><![CDATA[Hello Internet! Over the years I&#8217;ve worked with computers and the web, I&#8217;ve had to create many webservers using Apache and PHP. Apache is a great and free webserver host, and PHP is a wonderful scripting language for server-side web coding. Installing these isn&#8217;t the hardest thing in the world, nor the easiest. That&#8217;s why [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Internet! Over the years I&#8217;ve worked with computers and the web, I&#8217;ve had to create many webservers using Apache and PHP. Apache is a great and free webserver host, and PHP is a wonderful scripting language for server-side web coding.</p>
<p>Installing these isn&#8217;t the hardest thing in the world, nor the easiest. That&#8217;s why I&#8217;m here to walk you through it!<br />
<span id="more-402"></span></p>
<p>Quick step-by-step on setting up apache With PHP:</p>
<ul>
<li>Visit <a href="http://www.apache.org/dyn/closer.cgi"><span style="color: blue; text-decoration: underline;">http://www.apache.org/dyn/closer.cgi</span></a> and download the latest build of apache</li>
<li>
<div>Follow install instructions (just run the setup executable in the download)</div>
<ol>
<li>I recommend installing to <span style="color: red;">C:\Server\Apache2\</span> &#8211; It will make it easier later on</li>
</ol>
</li>
<li>
<div>Download the latest PHP from <a href="http://windows.php.net/download/"><span style="color: blue; text-decoration: underline;">http://windows.php.net/download/</span></a></div>
<ol>
<li>Be sure to download the &#8220;ZIP&#8221; version, not the installer. Otherwise It comes with a bunch of bogus you don&#8217;t need.</li>
</ol>
</li>
<li>Extract The PHP zip to <span style="color: red;">C:\Server\PHP\ </span>,That is assuming you installed apache to my recommended location.</li>
<li>Now open up <span style="color: red;">C:\Server\Apache2\conf\httpd.conf </span>in a text editor. My editor of choice is PSpad, but you can use others like Notepad++ or textedit on mac.</li>
<li>
<div>At the top of the file add the following code:</div>
<p style="margin-left: 36pt;"><span style="color: #00b050;">LoadModule php5_module &#8220;C:/Server/PHP/php5apache2_2.dll&#8221;<br />
</span></p>
<p style="margin-left: 36pt;"><span style="color: #00b050;">AddType application/x-httpd-php .php<br />
</span></p>
<p style="margin-left: 36pt;"><span style="color: #00b050;">PHPIniDir &#8220;C:/Server/PHP&#8221;<br />
</span></p>
<ol>
<li>If the location of your PHP files/directories are different, be sure to change them.</li>
</ol>
</li>
<li>
<div>Restart your Apache server to activate the changes we just made</div>
<ol>
<li>
<div>The Apache console:</div>
<p>                <a href="http://jakesiegers.com/wp-content/uploads/2012/03/033112_0045_HowtosetupA1.png" rel="lightboxImage"><img src="http://jakesiegers.com/wp-content/uploads/2012/03/033112_0045_HowtosetupA1.png" alt="" width="50%" /></a></li>
</ol>
</li>
<li>
<div>You Apache server should restart with no errors and you should now be running PHP!</div>
<ol>
<li>
<div>To be for sure, you can create a test.php file and put the following code in it:</div>
<p><span style="color: #00b050;">&lt;?php phpinfo(); ?&gt;<br />
</span></li>
<li>Place the file in <span style="color: red;">C:\Server\Apache2\htdocs\ </span>(this is you webserver&#8217;s root directory. When you navigate to &#8220;localhost&#8221; in your browser, it will go here.)</li>
<li>Then navigate to the page in your web browser. Mine was <a href="http://localhost/test.php"><span style="color: blue; text-decoration: underline;">http://localhost/test.php</span></a></li>
<li>
<div>You should see something like this:</div>
<p>                <a href="http://jakesiegers.com/wp-content/uploads/2012/03/033112_0045_HowtosetupA2.png" rel="lightboxImage"><img src="http://jakesiegers.com/wp-content/uploads/2012/03/033112_0045_HowtosetupA2.png" width="50%" alt="" /></a></li>
</ol>
</li>
<li>All done!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jakesiegers.com/2012/03/31/how-to-set-up-apache-and-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Still Alive&#8230; With UPDATES!</title>
		<link>http://jakesiegers.com/2012/03/07/im-still-alive-with-updates/</link>
		<comments>http://jakesiegers.com/2012/03/07/im-still-alive-with-updates/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 00:50:03 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Updates!]]></category>

		<guid isPermaLink="false">http://jakesiegers.com/?p=323</guid>
		<description><![CDATA[Yay Updates! &#160; I&#8217;ve been busy with college over the past few months, but I can say that I have been working on my site in my spare free time. Here are some things you can expect in the future: An Updated Pixel Pirate Game (It&#8217;s becoming really polished, and you can play your own music [...]]]></description>
			<content:encoded><![CDATA[<p>Yay Updates!</p>
<p>&nbsp;</p>
<p>I&#8217;ve been busy with college over the past few months, but I can say that I have been working on my site in my spare free time. Here are some things you can expect in the future:<span id="more-323"></span></p>
<ul>
<li>An Updated Pixel Pirate Game (It&#8217;s becoming really polished, and you can play your own music now)</li>
<li>A light design &#8220;face-lift&#8221;: I&#8217;d like to start some new design standards for myself, so I can keep things constant. I&#8217;d also like to add some nice backgrounds so you don&#8217;t just see a boring black background all the time&#8230;</li>
<ul>
<li>Also, I&#8217;d like to add images or logos for each of my posts, i&#8217;m just not sure how I want it to look yet&#8230;</li>
<li>This blog text design/font/color/thing isn&#8217;t something im fond of either&#8230; I really want to make it more appealing to the eyes.</li>
</ul>
<li>Dropping the &#8220;beta&#8221; tag&#8230; or not. I kinda like it because it means I&#8217;m never finished with my homepage. I always change it. I love to experiment.</li>
<li>A new super cool website? Big maybe on this one. It&#8217;s a sort of game/art portal concept I came up with a while ago. I even had a sexy design to go with it.</li>
</ul>
<p>&nbsp;</p>
<p>So, yeah. I&#8217;m not dead. Just a busy bee.</p>
<p>&nbsp;</p>
<p>P.S. Time moves fast. I never really noticed that until I made this blog&#8230; We&#8217;re already a quarter into 2012&#8230;. crazy.</p>
]]></content:encoded>
			<wfw:commentRss>http://jakesiegers.com/2012/03/07/im-still-alive-with-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lets fix up a graphics card!</title>
		<link>http://jakesiegers.com/2011/11/04/my-first-blog-post-lets-fix-up-a-graphics-card-d/</link>
		<comments>http://jakesiegers.com/2011/11/04/my-first-blog-post-lets-fix-up-a-graphics-card-d/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 02:56:15 +0000</pubDate>
		<dc:creator>Jake</dc:creator>
				<category><![CDATA[Experiments]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[cards]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[New]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows8]]></category>

		<guid isPermaLink="false">http://jakesiegers.com/?p=250</guid>
		<description><![CDATA[HEY! It&#8217;s my first post on my personal blog! I&#8217;d thought I would share a story today! So, one morning at work, I felt like installing Windows 8 Developer Edition on one of the older desktop machines. I was going to use it to test the compatibility of some of our older applications and to [...]]]></description>
			<content:encoded><![CDATA[<p>HEY! It&#8217;s my first post on my personal blog! I&#8217;d thought I would share a story today!</p>
<p>So, one morning at work, I felt like installing Windows 8 Developer Edition on one of the older desktop machines. I was going to use it to test the compatibility of some of our older applications and to just play with it a bit. Well&#8230; installing Windows 8 was easy, however I noticed that windows 8 ran REALLY slowly on the desktop I was using&#8230;</p>
<p style="text-align: center;"><a href="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard1.jpg" rel="lightboxImage"><img class="aligncenter size-thumbnail wp-image-260" title="graphicscard1" src="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard1-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p><span id="more-250"></span><br />
That&#8217;s a sad number 2 on 2D graphics&#8230;. and Windows 8 ran really show because of it! Ugh. I needed a new graphics card. My boss happened to have an old Nvidia Quadro card laying around, but the fan on it was broken.</p>
<p style="text-align: center;"><a href="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard2.jpg" rel="lightboxImage"><img class="aligncenter size-thumbnail wp-image-261" title="graphicscard2" src="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard2-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p style="text-align: left;">Notice the dark color of the fan&#8230; that means it won&#8217;t be spinning any time soon. Lucky for me, I happened to have an extra, awesome-blue colored fan to use on this graphics card. Unfortunately, my excitement didn&#8217;t last long because I quickly noticed that the two fan cables didn&#8217;t match at all. (sadface)</p>
<p style="text-align: center;"><a href="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard3.jpg" rel="lightboxImage"><img class="aligncenter size-thumbnail wp-image-262" title="graphicscard3" src="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard3-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p> I was kinda stuck. Until I just decided to strip both connectors on the blue fan and the old fan on the graphics card, because I can.</p>
<p style="text-align: center;"><a href="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard4.jpg" rel="lightboxImage"><img class="aligncenter size-thumbnail wp-image-263" title="graphicscard4" src="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard4-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p style="text-align: left;">I also made sure the blue fan worked by touching the correct red and black wires together. It did, so I was ready to continue!</p>
<p style="text-align: center;"><a href="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard5.jpg" rel="lightboxImage"><img class="aligncenter size-thumbnail wp-image-264" title="graphicscard5" src="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard5-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p style="text-align: left;">All I had was some duck tape, so I just taped the wires together in a very messy fashion, because I just needed it to stay together.</p>
<p style="text-align: center;"><a href="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard6.jpg" rel="lightboxImage"><img class="aligncenter size-thumbnail wp-image-265" title="graphicscard6" src="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard6-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p style="text-align: left;"> There. all fixed ^.^</p>
<p style="text-align: center;"><a href="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard10.jpg" rel="lightboxImage"><img class="size-thumbnail wp-image-269 aligncenter" title="graphicscard10" src="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard10-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>It Works! I was now able to run Windows 8 at full speed with the new 3.5 2D graphics rating! It&#8217;s also a great day when I get to build myself a &#8220;frankin-graphics-card&#8221;</p>
<p style="text-align: center;"><a href="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard11.jpg" rel="lightboxImage"><img class="aligncenter size-thumbnail wp-image-270" title="graphicscard11" src="http://jakesiegers.com/wp-content/uploads/2011/11/graphicscard11-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p style="text-align: left;">Like it? Leave me a comment!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://jakesiegers.com/2011/11/04/my-first-blog-post-lets-fix-up-a-graphics-card-d/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

