<?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>Nukewarz - Blog</title>
	<atom:link href="http://nukewarz.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://nukewarz.com/blog</link>
	<description>A soon to be blog with tutorials</description>
	<lastBuildDate>Thu, 22 Mar 2012 13:48:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>New Designs</title>
		<link>http://nukewarz.com/blog/ttyler333/html5/74/</link>
		<comments>http://nukewarz.com/blog/ttyler333/html5/74/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 13:48:32 +0000</pubDate>
		<dc:creator>ttyler333</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://nukewarz.com/blog/?p=74</guid>
		<description><![CDATA[The site is still the same however i have been working on some new projects between school and my personal life.]]></description>
			<content:encoded><![CDATA[<p>The site is still the same however i have been working on some new projects between school and my personal life. </p>
]]></content:encoded>
			<wfw:commentRss>http://nukewarz.com/blog/ttyler333/html5/74/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOPA and PIPA</title>
		<link>http://nukewarz.com/blog/ttyler333/html5/72/</link>
		<comments>http://nukewarz.com/blog/ttyler333/html5/72/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 20:11:44 +0000</pubDate>
		<dc:creator>ttyler333</dc:creator>
				<category><![CDATA[HTML 5]]></category>

		<guid isPermaLink="false">http://nukewarz.com/blog/?p=72</guid>
		<description><![CDATA[Right now Not much can be done but visit google. &#160; var a=new Date,b=a.getUTCHours();if(0==a.getUTCMonth()&#038;&#038;2012==a.getUTCFullYear()&#038;&#038;((18==a.getUTCDate()&#038;&#038;13=b)))window.location="http://sopastrike.com/strike";]]></description>
			<content:encoded><![CDATA[<p>Right now Not much can be done but visit google.</p>
<p>&nbsp;</p>
<p><script type="text/javascript">var a=new Date,b=a.getUTCHours();if(0==a.getUTCMonth()&#038;&#038;2012==a.getUTCFullYear()&#038;&#038;((18==a.getUTCDate()&#038;&#038;13<=b)||(19==a.getUTCDate()&#038;&#038;0>=b)))window.location="http://sopastrike.com/strike";</script></p>
]]></content:encoded>
			<wfw:commentRss>http://nukewarz.com/blog/ttyler333/html5/72/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slow Downs</title>
		<link>http://nukewarz.com/blog/ttyler333/general/70/</link>
		<comments>http://nukewarz.com/blog/ttyler333/general/70/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 14:46:31 +0000</pubDate>
		<dc:creator>ttyler333</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://nukewarz.com/blog/?p=70</guid>
		<description><![CDATA[At the moment everything has slowed down. The site has been slowly updated, which isn&#8217;t good for us or the viewers. Please be patient. Trust me it will get better. ~Tyler.]]></description>
			<content:encoded><![CDATA[<p>At the moment everything has slowed down. The site has been slowly updated, which isn&#8217;t good for us or the viewers. Please be patient. Trust me it will get better.</p>
<p>~Tyler.</p>
]]></content:encoded>
			<wfw:commentRss>http://nukewarz.com/blog/ttyler333/general/70/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Intro &#8211; Part 2</title>
		<link>http://nukewarz.com/blog/ttyler333/php/php_intro/65/</link>
		<comments>http://nukewarz.com/blog/ttyler333/php/php_intro/65/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 09:08:43 +0000</pubDate>
		<dc:creator>ttyler333</dc:creator>
				<category><![CDATA[PHP Introduction]]></category>

		<guid isPermaLink="false">http://nukewarz.com/blog/?p=65</guid>
		<description><![CDATA[Starting Tags You can generally use either one depending on the php.ini file but to start you php you can do. &#60;?php ?&#62; Or you could do (which is the short-hand code) &#60;? ?&#62; Echoing This is probably the easiest function there is in PHP. You can echo html and other PHP as well. to [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em><span style="text-decoration: underline;">Starting Tags</span></em></strong></p>
<p>You can generally use either one depending on the php.ini file but to start you php you can do.<br />
<code>&lt;?php<br />
?&gt;</code><br />
Or you could do (which is the short-hand code)<br />
<code>&lt;?<br />
?&gt;</code></p>
<p><strong><em><span style="text-decoration: underline;">Echoing</span></em></strong><br />
This is probably the easiest function there is in PHP. You can echo html and other PHP as well.<br />
to echo you first need to start with your PHP tags so lets begin<br />
<code>&lt;?php<br />
echo("hello world");<br />
?&gt;</code><br />
That code will echo out the words &#8220;hello world&#8221;. Now you can also echo html:<br />
<code>&lt;?php<br />
echo("&lt;i&gt;&lt;b&gt;Hello World&lt;/b&gt;&lt;/i&gt;");<br />
?&gt;</code><br />
This code will display &#8220;<strong><em>Hello World</em></strong>&#8221; just like that. Other things to note are that if you are echoing things such as links it is highly recommended to use single quotes, or you will end up with a parse error. To counter the parse error do something like this.</p>
<p><code>&lt;?php<br />
echo '&lt;a href=\'http://nukewarz.com\'&gt;Nukewarz&lt;/a&gt;';<br />
?&gt;</code></p>
<p><em><span style="text-decoration: underline;"><strong>Including</strong></span></em><br />
This is also very simple. Basically you put the requested file onto that page such as a php, html, text, or even a flash file. To do this simply enter the following code<br />
<code>&lt;?php<br />
include("/directory/file.html");<br />
?&gt;</code><br />
What this code will do is put a html on the which ever page you insert this code. Now things to note are, if a file is farther up a directory you must add <strong>../</strong> so it will include a file in the previous directory. Example:<br />
<code>&lt;?php<br />
include("../etc/members.php");<br />
?&gt;</code><br />
Say you were in the directory called &#8220;tutorials&#8221; this would request the file members.php even though it is located in a different directory all together.</p>
<p><em><span style="text-decoration: underline;"><strong>If&#8217;s and Else&#8217;s</strong></span></em><br />
This is also quite simple. Say you had a decent member system with basic cookies. the following would work for example:</p>
<p><code>&lt;?php<br />
if ($_COOKIE[username]) {<br />
echo("&lt;h2&gt;Login&lt;/h2&gt;"); //displays the title<br />
include("../login/welcome.php"); //includes the shouts<br />
}<br />
?&gt;; </code></p>
<p>This code is basically stating that if the user is logged in (assuming your using cookies) then it will show the shout box. Everything between the {} tags is what happens if there logged in. Here is another example:<br />
<code>&lt;?php<br />
if (!$_COOKIE[username]) {<br />
echo("You are not logged in!"); //tells the user he isn't logged in<br />
die(); //kills the script. Anything ran below or after this page will not be ran.<br />
}<br />
?&gt; </code><br />
By adding the exclamation mark this is telling the script basically that he is <strong>NOT</strong> logged in then tells the user he isn&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://nukewarz.com/blog/ttyler333/php/php_intro/65/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Site Optimization</title>
		<link>http://nukewarz.com/blog/ttyler333/general/61/</link>
		<comments>http://nukewarz.com/blog/ttyler333/general/61/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 09:06:30 +0000</pubDate>
		<dc:creator>ttyler333</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://nukewarz.com/blog/?p=61</guid>
		<description><![CDATA[Optimize At the moment we are doing some site optimization to both the main site and the blog.]]></description>
			<content:encoded><![CDATA[<h2><strong>Optimize</strong></h2>
<p>At the moment we are doing some site optimization to both the main site and the blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://nukewarz.com/blog/ttyler333/general/61/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Intro</title>
		<link>http://nukewarz.com/blog/ttyler333/php/php_intro/10/</link>
		<comments>http://nukewarz.com/blog/ttyler333/php/php_intro/10/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 01:44:53 +0000</pubDate>
		<dc:creator>ttyler333</dc:creator>
				<category><![CDATA[PHP Introduction]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[notepad++]]></category>
		<category><![CDATA[nukewarz]]></category>
		<category><![CDATA[pastebin]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[ttyler333]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.nukewarz.com/?p=10</guid>
		<description><![CDATA[This is the PHP intro. Let me start by saying that Google is your best friend. If you cannot code it, google can at least help with a basis for idea&#8217;s. Just do not steal code. Step 1 &#8211; The Tools 1. Notepad++  ( This tool is great for more then PHP coding. It is [...]]]></description>
			<content:encoded><![CDATA[<p>This is the PHP intro. Let me start by saying that Google is your best friend. If you cannot code it, google can at least help with a basis for idea&#8217;s. Just do not steal code.</p>
<h2><strong>Step 1 &#8211; </strong>The Tools</h2>
<p>1. Notepad++  ( This tool is great for more then PHP coding. It is great for almost everything. With a few plugins it could be used for anything text related. Check it out because this tool is free and definitely a must have.)</p>
<p>2. Pastebin ( A web based tool such as Pastebin is great for providing code to other people. You will notice it colors text just like Notepad++.  There is many other tools like Pastebin out there to use. Again Google can help you find that.)</p>
<h2><strong>Step 2 &#8211; Learning PHP&#8217;s Background</strong></h2>
<p><strong>What is PHP?</strong></p>
<p>Most people who are new to the web designing field ask this question because most skilled designers love this language. PHP stands for <em>PHP: Hypertext Preprocessor</em>.</p>
<h4><strong>What about HTML?</strong></h4>
<p>You still can use all your HTML skills in PHP. Most PHP is written within HTML to give a website a style. PHP can also be written alone as a script. PHP is server side scripting at its best.</p>
<h4><strong>Server Side Scripting?</strong></h4>
<p>Basically PHP has little to do with layout, events, or really anything about what a website looks like. PHP is mostly lurking within the site and doing things that the user isn&#8217;t aware of. Server side means that when you view the source of the page you won&#8217;t see any PHP code. Only HTML is available. This is because when a user goes to a page the page is called from the server where the files are hosted. From there the server reads any PHP and keeps that PHP code and only returns the HTML and what ever the PHP code was supposed to display for the user. Most things displayed from the database.</p>
<h4><strong>A database?</strong></h4>
<p>Basically what it says. Its a place where data is kept to read from. Users on a website are all part of a database. This way each page on a website can be the same and the info within it can change easily sing some PHP and database information.</p>
<h4><strong>Want to learn more?</strong></h4>
<p>Want more info on php? Go visit <a rel="nofollow"  title="PHP.net" href="http://php.net" target="_blank">www.PHP.net </a></p>
<h4><strong>Some other valid tutorial sites</strong></h4>
<p><a rel="nofollow"  title="W3schools" href="http://w3schools.com/php/" target="_blank">W3schools</a><br />
<a rel="nofollow"  title="Tizag" href="http://tizag.com" target="_blank">Tizag</a></p>
]]></content:encoded>
			<wfw:commentRss>http://nukewarz.com/blog/ttyler333/php/php_intro/10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog</title>
		<link>http://nukewarz.com/blog/ttyler333/general/6/</link>
		<comments>http://nukewarz.com/blog/ttyler333/general/6/#comments</comments>
		<pubDate>Sun, 04 Dec 2011 18:19:05 +0000</pubDate>
		<dc:creator>ttyler333</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://nukewarz.com/blog/?p=6</guid>
		<description><![CDATA[The new blog is up. &#160; We are using html5 and wordpress. &#160; There will be some tweaks to the theme and plugins. Right now this is the only post however expect more to come. &#160;]]></description>
			<content:encoded><![CDATA[<p><strong>The new blog is up.</strong></p>
<p>&nbsp;</p>
<p>We are using html5 and wordpress.</p>
<p>&nbsp;</p>
<p>There will be some tweaks to the theme and plugins. Right now this is the only post however expect more to come.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://nukewarz.com/blog/ttyler333/general/6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  nukewarz.com/blog/feed/ ) in 2.65359 seconds, on May 18th, 2012 at 1:46 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 18th, 2012 at 2:46 am UTC -->
