<?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>Codewalkz.com</title>
	<atom:link href="http://www.codewalkz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codewalkz.com</link>
	<description></description>
	<lastBuildDate>Sat, 05 May 2012 00:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How to Build Your Own Countdown Timer Using JavaScript</title>
		<link>http://www.codewalkz.com/2012/05/05/how-to-build-your-own-countdown-timer-using-javascript/</link>
		<comments>http://www.codewalkz.com/2012/05/05/how-to-build-your-own-countdown-timer-using-javascript/#comments</comments>
		<pubDate>Sat, 05 May 2012 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://Codewalkz.com/?p=11</guid>
		<description><![CDATA[Here is an example of a simple JavaScript countdown timer. To make it functional, all you need to do is copy and past the code into your choice of editing software. You can do this with notepad or any other HTML editor of your choosing. This JavaScript code should follow after the h1 align=&#8221;center&#8221; and [...]]]></description>
			<content:encoded><![CDATA[<p>Here is an example of a simple JavaScript countdown timer. To make it functional, all you need to do is copy and past the code into your choice of editing software. You can do this with notepad or any other HTML editor of your choosing. </p>
<p>This JavaScript code should follow after the h1 align=&#8221;center&#8221; and script language=&#8221;JavaScript&#8221; tags, so it becomes active HTML. The JavaScript should then end with the /script and /h1 tags to be visible and active. <br />
Here<span id="more-11"></span> is the JavaScript code to copy and paste.</p>
<p>
var countDownInterval=5;<br />
var countDownTime=countDownInterval+1;<br />
function countDown(){<br />
countDownTime&#8211;;<br />
if (countDownTime <=0){<br />
countDownTime=countDownInterval;<br />
clearTimeout(counter)<br />
window.Didnâ€™t catch that? <a href='http://thechangelog.com/post/21791104585/fiddle-salad-live-editor-with-preprocessors-css'>This</a> explains it.location=&#8221;http://www.wallpaperama.com&#8221;;<br />
return<br />
}<br />
if (document.all) //if IE 4+<br />
document.all.countDownText.innerText = countDownTime+&#8221; &#8220;;<br />
else if (document.getElementById) //else if NS6+<br />
document.getElementById(&#8220;countDownText&#8221;).innerHTML=countDownTime+&#8221; &#8220;<br />
else if (document.layers){ //CHANGE TEXT BELOW TO YOUR OWN<br />
document.c_reload.document.c_reload2.document.write(&#8216;Launching in <b id="countDownText">&#8216;+countDownTime+&#8217; </b> seconds&#8217;)<br />
document.c_reload.document.c_reload2.document.close()<br />
}<br />
counter=setTimeout(&#8220;countDown()&#8221;, 1000);<br />
}</p>
<p>function startit(){<br />
if (document.all||document.getElementById) //CHANGE TEXT BELOW TO YOUR OWN<br />
document.write(&#8216;Launching in <b id="countDownText">&#8216;+countDownTime+&#8217; </b> seconds&#8217;)<br />
countDown()<br />
}</p>
<p>if (document.all||document.getElementById)<br />
startit()<br />
else<br />
window.onload=startit<br />
setTimeout(&#8220;location.href=&#8217;http://www.wallpaperama.com&#8217;&#8221; , t)</p>
<p>
Once you have copied and pasted the above HTML code, save the file as wallpaperama-timer.html. After having saved this file, you may open it within your browser application to see it in action. That&#8217;s it, there are other similar JavaScript applications available online. If you have followed these steps correctly, you should have a working countdown timer using this JavaScript for you to use. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.codewalkz.com/2012/05/05/how-to-build-your-own-countdown-timer-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Five Projects Designed to Improve Your PHP Skills</title>
		<link>http://www.codewalkz.com/2012/05/02/five-projects-designed-to-improve-your-php-skills/</link>
		<comments>http://www.codewalkz.com/2012/05/02/five-projects-designed-to-improve-your-php-skills/#comments</comments>
		<pubDate>Wed, 02 May 2012 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://Codewalkz.com/?p=10</guid>
		<description><![CDATA[PHP is like learning a spoken language. The more practice you have, the better you get. When scenarios arise that you are unfamiliar with, you have to figure them out. Figuring out how to solve these situations is what makes us grow as programmers. There are various projects which you can undertake to refine your [...]]]></description>
			<content:encoded><![CDATA[<p>PHP is like learning a spoken language. The more practice you have, the better you get. When scenarios arise that you are unfamiliar with, you have to figure them out. Figuring out how to solve these situations is what makes us grow as programmers. There are various projects which you can undertake to refine your PHP proficiency.</p>
<p>Five Projects To Improve Your Skills</p>
<p>Cookies and Sessions: Setup a simple website that holds a user&#8217;s ip address in a session or cookie. Once you have a specific user discovered, count how<span id="more-10"></span> many pages they view. Cookies and sessions hold a lot of user information. Together, they can be used to create authentication systems , logging systems, and even help with user interactions.</p>
<p>Authentication System: Every CMS or membership site revolves around an authentication system. Learning how to ensure a user has logged in and is allowed to view certain areas of a website, will teach you a lot. Once the basics are created. an ACL (access control list) can be implemented. This allows for different lists of users. Admins, guests, moderators, and the like will be controlled through the ACL.</p>
<p>Basic CRUD: The basic create, read, update, and delete (CRUD) functionality is vital to any website. The owner or users need a way to input data. Data also needs to be read ,displayed, updated and deleted. This will ensure a basic understanding of database functionality.</p>
<p>Security Overview: Build a little (CRUD) application without using any security measures. When inputting data, try to hack into your own website. Use things like SQL injections, CSRF, and XSRF exploits. Every programmer needs to understand how to secure their coding. This will be a good foundation to your security knowledge.</p>
<p>Create A Simple Blog: Creating a simple blog will incorporate so many aspects of programming. CRUD, ACL, and security issues will all need to be used. The immense amount of knowledge learned through creating a simple blog system is invaluable.</p>
<p>Working through these five projects will greatly improve your PHP skills. Once a programmer incorporates the basics, everything else seems to fall in place. The projects outlined can be done in their exact order. This will give you a huge understanding of any language. Remember, persistence is vital. If you think a calender would be helpful in your blog, create it. Always expand and grow. This is how a programmer becomes proficient in PHP.Take a look here to learn more: <a href='http://seclists.org/fulldisclosure/2012/Apr/330'>XSS, CSRF and AFU vulnerabilities in Organizer for WordPress</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codewalkz.com/2012/05/02/five-projects-designed-to-improve-your-php-skills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Impress Visitors with Visual Appeal Using CSS Background Images</title>
		<link>http://www.codewalkz.com/2012/04/29/impress-visitors-with-visual-appeal-using-css-background-images/</link>
		<comments>http://www.codewalkz.com/2012/04/29/impress-visitors-with-visual-appeal-using-css-background-images/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://Codewalkz.com/?p=9</guid>
		<description><![CDATA[Impressing visitors with visual appeal by using CSS background images is an easy way to enhance a website. CSS is code used to modify the look and aesthetic of a website. It basically affects how the webpage displays information and images, while HTML tells a web browser what information to display and how to format [...]]]></description>
			<content:encoded><![CDATA[<p>Impressing visitors with visual appeal by using CSS background images is an easy way to enhance a website. CSS is code used to modify the look and aesthetic of a website. It basically affects how the webpage displays information and images, while HTML tells a web browser what information to display and how to format that information. CSS is a way of adding to the aesthetic appeal of a website.</p>
<p>It is simple to add a<span id="more-9"></span> background image to your website using CSS. Create a separate CSS document and link to that document in your HTML file. This can be done by opening up a new file in a text editor such as Notepad. Be sure to save the file with the &#8216;.css&#8217; extension. In the CSS document at the code below;</p>
<p>body <br />
{<br />
background-image:url(&#8220;Image.jpg&#8221;);<br />
}</p>
<p>In this code above, you&#8217;ll replace the &#8216;Image.jpg&#8217; file with the filename and extension of an image you actually want to insert into the background of the website. It is further possible to modify the size and placement of this image using a number of tags. There are almost too many to list here. However, those who are interested in learning more about using CSS background images can find plenty of information online.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codewalkz.com/2012/04/29/impress-visitors-with-visual-appeal-using-css-background-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cleaner CSS with Proper Grouping and Nesting</title>
		<link>http://www.codewalkz.com/2012/04/28/cleaner-css-with-proper-grouping-and-nesting/</link>
		<comments>http://www.codewalkz.com/2012/04/28/cleaner-css-with-proper-grouping-and-nesting/#comments</comments>
		<pubDate>Sat, 28 Apr 2012 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://Codewalkz.com/?p=8</guid>
		<description><![CDATA[CSS stylesheets are an excellent way of adding extra style to a website. It also helps keep HTML pages organized by creating separate stylesheets in their own files. However, more complex websites can lead to very complex CSS sheets. If a programmer doesn&#8217;t use proper nesting and grouping protocols they can become difficult to read [...]]]></description>
			<content:encoded><![CDATA[<p>CSS stylesheets are an excellent way of adding extra style to a website. It also helps keep HTML pages organized by creating separate stylesheets in their own files. However, more complex websites can lead to very complex CSS sheets. If a programmer doesn&#8217;t use proper nesting and grouping protocols they can become difficult to read the CSS in order to edit it later.</p>
<p>There are a number of ways programmers can create clean looking easily understood CSS stylesheets. First, is to follow standard indenting rules that are commonly used with HTML. Simply put, the programmer<span id="more-8"></span> indents each new section of code to create visually organized code on the screen.</p>
<p>Programmers can also grouped together different selectors that have the same code. For example, a stylesheet can group the H1 and P tags together if they use the same styling. See the code below for an example;</p>
<p>h1,p<br />
{<br />
text-align:center;<br />
}</p>
<p>The H1 tag and the P tag are grouped together, saving space on the page.</p>
<p>Programmers can also nest different selectors together without having to use multiple groupings for different selectors. See the example below;</p>
<p>p<br />
{<br />
text-align:center;<br />
}<br />
.div p<br />
{<br />
color:red;<br />
}</p>
<p>In the above code all paragraph text will be aligned to the center and all paragraph text under the Div p class will also be aligned in red.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codewalkz.com/2012/04/28/cleaner-css-with-proper-grouping-and-nesting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy CSS Layouts Using DIV Tags</title>
		<link>http://www.codewalkz.com/2012/04/26/easy-css-layouts-using-div-tags/</link>
		<comments>http://www.codewalkz.com/2012/04/26/easy-css-layouts-using-div-tags/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 00:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<guid isPermaLink="false">http://Codewalkz.com/?p=7</guid>
		<description><![CDATA[Programmers using CSS can also use it to create easy CSS layouts using DIV tags. Essentially, a DIV tag is a container for other html or CSS elements. It helps a great deal in organizing content on a page. In fact, the programmer can create one CSS style sheet with the DIV tags in it [...]]]></description>
			<content:encoded><![CDATA[<p>Programmers using CSS can also use it to create easy CSS layouts using DIV tags. Essentially, a DIV tag is a container for other html or CSS elements. It helps a great deal in organizing content on a page. In fact, the programmer can create one CSS style sheet with the DIV tags in it and call that style sheet for all of the pages on his or her website. Easy as pie.</p>
<p>Every web page<span id="more-7"></span> has three basic sections, the banner, navigation menu and the body of the page. Programmers can create three DIV containers for each of these sections and call them from the CSS file for a webpage as needed. This is simple enough to do. Create a CSS style sheet. In it create a DIV selector like the one below and add some styling;</p>
<p>#container<br />
{<br />
height:50%;<br />
width:50%;<br />
background:red;<br />
}	</p>
<p>The hash tag is the selector for a DIV tag and the word &#8216;container&#8217; is my name for the DIV container. You can use any name you like for the name of your DIV. This particular DIV is going to be 50% the height and width of the page with a red background. The programmer places this DIV in his or her html file using the code below:</p>
<p></p>
<div id="container">
     Put whatever you want in the container.
</div>
<p>Don&#8217;t forget to close your DIV tag at the end of the container!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codewalkz.com/2012/04/26/easy-css-layouts-using-div-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

