<?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>Web Designers Tutorials</title>
	<atom:link href="http://kobusswartz.co.za/feed/" rel="self" type="application/rss+xml" />
	<link>http://kobusswartz.co.za</link>
	<description></description>
	<lastBuildDate>Wed, 27 Jul 2011 20:10:18 +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>Help Shape The Content At Web Designers Tutorials</title>
		<link>http://kobusswartz.co.za/shape-content-webdesignerstutorials-com/</link>
		<comments>http://kobusswartz.co.za/shape-content-webdesignerstutorials-com/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 20:09:53 +0000</pubDate>
		<dc:creator>Kobus Swartz</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Designs]]></category>
		<category><![CDATA[HTML & CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Temlpates]]></category>
		<category><![CDATA[What do you want to see on our site]]></category>

		<guid isPermaLink="false">http://kobusswartz.co.za/?p=217</guid>
		<description><![CDATA[Vote on webdesignerstutorials.com on what you would like to see on the site, dont be shy, we can make it happen Read This&#62;&#62;&#62; Help Shape The Content At webdesignerstutorials.com I have got some good content coming up for you guys [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignerstutorials.com/shape-content-webdesignerstutorials-com"><img class="alignnone size-full wp-image-218" title="wwylts" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/wwylts.png" alt="" width="600" height="200" /></a></p>
<p>Vote on webdesignerstutorials.com on what you would like to see on the site, dont be shy, we can make it happen</p>
<p><span id="more-217"></span>Read This&gt;&gt;&gt;</p>
<p>Help Shape The Content At webdesignerstutorials.com I have got some good content coming up for you guys but I want to make sure that I am meeting the needs of the developers and designers out there, So anything you can think of that you would like to see, download, learn from a tutorial, source code, applications and that kind of stuff, let me know! If there is some good response, we will develop and run the content in no time thanking you in the article. You can use the comment section down low to tell us what you would like to see on webdesignerstutorials.com !</p>
]]></content:encoded>
			<wfw:commentRss>http://kobusswartz.co.za/shape-content-webdesignerstutorials-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy PHP Upload Form</title>
		<link>http://kobusswartz.co.za/easy-php-upload-form/</link>
		<comments>http://kobusswartz.co.za/easy-php-upload-form/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 19:22:58 +0000</pubDate>
		<dc:creator>Kobus Swartz</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php upload]]></category>
		<category><![CDATA[upload form]]></category>

		<guid isPermaLink="false">http://kobusswartz.co.za/?p=212</guid>
		<description><![CDATA[Here is a basic PHP upload form, it can be used to upload any file, from an images to a PDF or zip file, the code is easy to understand and implement. Download The Source File for this Tutorial &#60;Here&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignerstutorials.com/easy-php-upload-form"><img class="alignnone size-full wp-image-213" title="upload form" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/upload-form.png" alt="" width="600" height="200" /></a><br />
Here is a basic PHP upload form, it can be used to upload any file, from an images to a PDF or zip file, the code is easy to understand and implement.<span id="more-212"></span></p>
<div id="download_sec">
<p>Download The Source File for this Tutorial</p>
<p><a href="http://www.kobusswartz.co.za/downloads/uploader.zip"><img src="http://www.kobusswartz.co.za/images/download_btn.png" alt="" /></a></p>
</div>
<div id="spacer"></div>
<div id="head"><span style="color: #fff;">&lt;</span>Here&#8217;s The Code<span style="color: #fff;">&gt;</span> The HTML</div>
<div id="codeBox">
<p>&lt;html&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;title&gt;File Uploader&lt;/title&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;h3&gt;Upload your file&lt;/h3&gt;</p>
<p>Select a file to upload:&lt;br&gt;</p>
<p>&lt;form action=&#8221;uploader.php&#8221; method=&#8221;post&#8221; enctype=&#8221;multipart/form-data&#8221;&gt;</p>
<p>&lt;input type=&#8221;file&#8221; name=&#8221;file&#8221; size=&#8221;45&#8243;&gt;</p>
<p>&lt;br&gt;</p>
<p>&lt;input type=&#8221;submit&#8221; value=&#8221;Upload File&#8221;&gt;</p>
<p>&lt;/form&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
</div>
<p>The enctype attribute specifies which content-type to use when the form is submitted. &#8220;multipart/form-data&#8221; is used when a form requires binary data, like the contents of the file to be uploaded.</p>
<div id="head"><span style="color: #fff;">&lt;</span>Here&#8217;s The Code<span style="color: #fff;">&gt;</span> The PHP</div>
<div id="codeBox">
<p>&lt;?php</p>
<p>if( $_FILES['file']['name'] != &#8220;&#8221; )</p>
<p>{</p>
<p>copy ( $_FILES['file']['tmp_name'],</p>
<p>/*The directory underneath should point to where you want your files uploaded*/</p>
<p>&#8220;C:/Apache/htdocs/&#8221; . $_FILES['file']['name'] )</p>
<p>or die( &#8220;Could not copy file&#8221; );</p>
<p>}</p>
<p>else</p>
<p>{</p>
<p>die( &#8220;No file specified&#8221; );</p>
<p>}</p>
<p>?&gt;</p>
<p>&lt;html&gt;</p>
<p>&lt;head&gt;</p>
<p>&lt;title&gt;Upload complete&lt;/title&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;h3&gt;File Uploaded&lt;/h3&gt;</p>
<p>&lt;ul&gt;</p>
<p>&lt;li&gt;Sent: &lt;?php echo $_FILES['file']['name']; ?&gt;&lt;/li&gt;</p>
<p>&lt;li&gt;Size: &lt;?php echo $_FILES['file']['size']; ?&gt; bytes&lt;/li&gt;</p>
<p>&lt;li&gt;Type: &lt;?php echo $_FILES['file']['type']; ?&gt;&lt;/li&gt;</p>
<p>&lt;/ul&gt;</p>
<p>&lt;a href=&#8221;&lt;?php echo $_FILES['file']['name']; ?&gt;&#8221;&gt;Click here to view file&lt;/a&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
</div>
<p>The type=&#8221;file&#8221; specifies that the input should be processed as a file. This is a very simple way of uploading files. For security reasons, you should add restrictions on what the user is allowed to upload and who can use the upload form.</p>
<div id="download_sec">
<p>Download The Source File for this Tutorial</p>
<p><a href="http://www.kobusswartz.co.za/downloads/uploader.zip"><img src="http://www.kobusswartz.co.za/images/download_btn.png" alt="" /></a></p>
</div>
<div id="spacer"></div>
]]></content:encoded>
			<wfw:commentRss>http://kobusswartz.co.za/easy-php-upload-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shiny Sticker Badges Tutorial</title>
		<link>http://kobusswartz.co.za/shiny-sticker-badges-tutorial/</link>
		<comments>http://kobusswartz.co.za/shiny-sticker-badges-tutorial/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 21:46:23 +0000</pubDate>
		<dc:creator>Kobus Swartz</dc:creator>
				<category><![CDATA[Designs]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://kobusswartz.co.za/?p=187</guid>
		<description><![CDATA[In this tutorial I will show you how to design your own shiny stickers and badges, use it for web, print or icons. Download The Source File for this Tutorial Step 1 Open up Photoshop, click on File &#62; New. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignerstutorials.com/shiny-sticker-badges-tutorial"><img class="alignnone size-full wp-image-188" title="main preview" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/main-preview.png" alt="" width="600" height="200" /></a></p>
<p>In this tutorial I will show you how to design your own shiny stickers and badges, use it for web, print or icons.<span id="more-187"></span></p>
<div id="download_sec">Download The Source File for this Tutorial<br />
<a href="http://www.kobusswartz.co.za/downloads/ShinyStickers.zip"><img src="http://www.kobusswartz.co.za/images/download_btn.png" alt="" /></a></div>
<h1>Step 1</h1>
<p>Open up Photoshop, click on File &gt; New. Set the width of your document to 500px and the height to 500px with a resolution of 72. Create a new layer and call it Sticker Background. Creat a new layer under your background layer and call it BG. The BG layer you can give a background color of #383838.<br />
<img class="alignnone size-full wp-image-189" title="s1" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s1.png" alt="" width="600" height="500" /></p>
<h1>Step 2</h1>
<p>In your Tool Panel, click on the dropdown and select the Custom Shape Tool. In your Properties Panel at the top, click on the drop down list. If you only see a few shapes, click on the right hand side dropdown arrow, scroll down and select all. This should bring up all the shapes.</p>
<p><img class="alignnone size-full wp-image-190" title="s2" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s2.png" alt="" width="530" height="244" /></p>
<h1>Step 3</h1>
<p>Select a medium grey color, something like this, #a9a9a9. Dont worry about the colors to much for now, we will get there.</p>
<p><img class="alignnone size-full wp-image-191" title="s3" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s3.png" alt="" width="600" height="500" /></p>
<p>Double click on the Seal round sticker shape, it should now be selected. Hold down the shift key to make a perfect circle and start drawing a circle any where on the canvas. It should be rather large like this</p>
<p><img class="alignnone size-full wp-image-192" title="s3q" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s3q.png" alt="" width="600" height="500" /></p>
<h1>Step 4</h1>
<p>Now comes the gradient part. Here, we are going to select 2 shades of grey for the background sticker. Set your top color to #ededed and your bottom color to #ffffff. GO back to your sticker background layer, right-click on th icon and click on Select Pixel. Now your Seal should be selected and ready to be &#8220;gradiented&#8221;.</p>
<h1>Step 5</h1>
<p>With your Gradient tool selected, drag your gradient from the center of the seal to a 45 degree angel to the left like this:</p>
<p><img class="alignnone size-full wp-image-193" title="s5" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s5.png" alt="" width="600" height="500" /></p>
<p>Control-D to deselect your seal selection.</p>
<h1>Step 6</h1>
<p>Create a new layer at the top of your sticker background and call it Sticker Top.<br />
On this step we follow the exact steps as Step 3, this time we are just going to make a smaller seal on top of the sticker background with a background color of #1b1b1b. If you did that you should have something looking like this:</p>
<p><img class="alignnone size-full wp-image-194" title="s6" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s6.png" alt="" width="600" height="500" /></p>
<h1>Step 7</h1>
<p>Now we start with the shiny gradients, some of you new to Photoshop might not know this next step but it&#8217;s a nice tool to have.<br />
Right-Click on the sticker top layer and select blending options. In the Styles list on the left hand side, click on Gradient Overlay. On your left hand side you will see the properties change, here is where we want to change the gradient of the top sticker.</p>
<p><img class="alignnone size-full wp-image-195" title="s7" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s7.png" alt="" width="600" height="500" /></p>
<h1>Step 8</h1>
<p>Click on the gradient box surounded by the red circle, your Gradient Editor should now pop up.</p>
<p><img class="alignnone size-full wp-image-196" title="s7a" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s7a.png" alt="" width="500" height="500" /></p>
<h1>Step 9</h1>
<p>At the bottom you will see 2 small color boxes, if you double click on them your select color stop box appears. In you color value box, type in the following value #000000. Close the box and click on the next small box, here we want a lighter black, almost like a charcoal matt black, for this we will use #7a7a7a. As you select the colors you can see your shape color change, you are welcome to change the color to anything you want. *Remeber, we are using the Linear Gradient for this one.*</p>
<p><img class="alignnone size-full wp-image-197" title="s8" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s8.png" alt="" width="600" height="500" /></p>
<p>By now, you should have something looking like this:</p>
<p><img class="alignnone size-full wp-image-198" title="s9" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s9.png" alt="" width="600" height="500" /></p>
<h1>Step 10</h1>
<p>Now that we have our basic shapes, we can start giving it a gloss look. Select your pen tool and draw a curve over your top sticker like this:</p>
<p><img class="alignnone size-full wp-image-200" title="pen" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/pen.png" alt="" width="600" height="500" /></p>
<p>Create a new layer and call it Gloss. Hit your Control and enter key to make you pen tool into a selection. Staying on the Gloss Photoshop layer, select a white color and hit the alt and backspace keys and the, control D to deselect your selection. You should now have somthing messy like this:</p>
<p><img class="alignnone size-full wp-image-201" title="s10" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s101.png" alt="" width="600" height="500" /></p>
<p>Right-click on your Sticker Top layer and click on Select Pixels. Your shape should now be surrounded by the pixel border.</p>
<h1>Step 11</h1>
<p>In your menu bar at the top go to Select &gt; Inverse. Make sure you are still on your Gloss layer for this one. This will inverse your current selection around your shape. Now, hit the delete key and watch the rest of you pen shape tool color disapear.</p>
<p><img class="alignnone size-full wp-image-202" title="s11" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s11.png" alt="" width="600" height="500" /></p>
<h1>Step 12</h1>
<p>Take the Opacity down to 8% to give it more of a glossy look.</p>
<p><img class="alignnone size-full wp-image-203" title="s12" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s12.png" alt="" width="600" height="500" /></p>
<h1>Step 13</h1>
<p>Once again we use the pen tool for some cutting out, this time we want to add a bend to the stick. Select your three top layers and merge them, you should now have 2 layers, your sticker and background. Use the Pen Toll too select the 3rd left top half of your sticker:</p>
<p><img class="alignnone size-full wp-image-204" title="s13" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s13.png" alt="" width="600" height="500" /></p>
<p>Hit Control Enter to turn your shape into a selection. Now, create a new layer and call it Fold. On the sticker layer we use Control X to cut the pice out, that piece we paste back onto the new fold layer. Using our move to we flip the selection around and make sure its inline where we cut it out:</p>
<p><img class="alignnone size-full wp-image-205" title="s13a" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s13a.png" alt="" width="600" height="500" /></p>
<h1>Step 14</h1>
<p>Here we are going to add the back part of the sticker with some gradients. Right click on the fold layer and click on Select Pixels. Create a new layer called top shiner. In your Tools panel, choose a white and a very light grey, you can use this one if you like #e9e9e9. Select your gradient tool and in the selected area draw your gradient from top to bottom:</p>
<p><img class="alignnone size-full wp-image-206" title="s13b" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/s13b.png" alt="" width="600" height="500" /></p>
<div id="spacer"></div>
<div id="download_sec">Download The Source File for this Tutorial<br />
<a href="http://www.kobusswartz.co.za/downloads/ShinyStickers.zip"><img src="http://www.kobusswartz.co.za/images/download_btn.png" alt="" /></a></div>
<h1>Done!</h1>
<p>Here is the part where you can decorate the stickers with whatever you feel like, maybe a price tag button for your site or a social network icon sticker.</p>
<p>Hope you enjoyed the tutorial, please feel free to comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://kobusswartz.co.za/shiny-sticker-badges-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Keep It Green Web PSD Template</title>
		<link>http://kobusswartz.co.za/free-green-web-psd-template/</link>
		<comments>http://kobusswartz.co.za/free-green-web-psd-template/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 14:44:14 +0000</pubDate>
		<dc:creator>Kobus Swartz</dc:creator>
				<category><![CDATA[Web Temlpates]]></category>

		<guid isPermaLink="false">http://kobusswartz.co.za/?p=179</guid>
		<description><![CDATA[Download The PSD]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignerstutorials.com/free-green-web-psd-template"><img class="alignnone size-full wp-image-180" title="preview" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/preview5.png" alt="" width="600" height="200" /></a><span id="more-179"></span><br />
Download The PSD<br />
<a href="http://www.kobusswartz.co.za/downloads/GreenyTheme.zip"><img src="http://www.kobusswartz.co.za/images/download_btn.png" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kobusswartz.co.za/free-green-web-psd-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Rounded Corners With CSS 3</title>
		<link>http://kobusswartz.co.za/quick-tip-rounded-corners-css-3/</link>
		<comments>http://kobusswartz.co.za/quick-tip-rounded-corners-css-3/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 12:31:37 +0000</pubDate>
		<dc:creator>Kobus Swartz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://kobusswartz.co.za/?p=173</guid>
		<description><![CDATA[Download The Source Code Although the rouned corners mostly work in the newer versions of browsers, it gives a nice effect to your site. Step 1 Add this code to your CSS: &#60;Here&#8217;s The Code&#62; The CSS border-radius: 10px; -moz-border-radius: [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.webdesignerstutorials.com/quick-tip-rounded-corners-css-3"><img class="alignnone size-full wp-image-174" title="preview" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/preview1.png" alt="" width="600" height="200" /></a><br />
<span id="more-173"></span><br />
Download The Source Code<br />
<a href="http://www.kobusswartz.co.za/downloads/css3rounedcorners.zip"><img src="http://www.kobusswartz.co.za/images/download_btn.png" alt="" /></a><br />
Although the rouned corners mostly work in the newer versions of browsers, it gives a nice effect to your site.</p>
<h1>Step 1</h1>
<p>Add this code to your CSS:</p>
<div id="head"><span style="color: #fff;">&lt;</span>Here&#8217;s The Code<span style="color: #fff;">&gt;</span> The CSS</div>
<div id="codeBox">
<p>border-radius: 10px;</p>
<p>-moz-border-radius: 10px;</p>
<p>-webkit-border-radius: 10px;</p>
<p>background:#312c19;</p>
</div>
<h1>Step 2</h1>
<p>Add this code to your HTML:</p>
<div id="head"><span style="color: #fff;">&lt;</span>Here&#8217;s The Code<span style="color: #fff;">&gt;</span> The HTML</div>
<div id="codeBox">
<p>&lt;div class=&#8221;borderBox&#8221;&gt;</p>
<p>&lt;!&#8211;Content Goes Here&#8211;&gt;</p>
<p>CSS 3 Round Corners</p>
<p>&lt;/div&gt;</p>
</div>
<p>Download The Source Code<br />
<a href="http://www.kobusswartz.co.za/downloads/css3rounedcorners.zip"><img src="http://www.kobusswartz.co.za/images/download_btn.png" alt="" /></a><br />
Kobus Swartz</p>
]]></content:encoded>
			<wfw:commentRss>http://kobusswartz.co.za/quick-tip-rounded-corners-css-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Premium Hosting Website Template Give-Away!</title>
		<link>http://kobusswartz.co.za/premium-hosting-template/</link>
		<comments>http://kobusswartz.co.za/premium-hosting-template/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 20:55:21 +0000</pubDate>
		<dc:creator>Kobus Swartz</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Temlpates]]></category>
		<category><![CDATA[html and css web temlpate for free]]></category>
		<category><![CDATA[premium]]></category>

		<guid isPermaLink="false">http://kobusswartz.co.za/?p=152</guid>
		<description><![CDATA[Web Designers tutorials decided to give away an awesome Premium web hosting template, free for you to download and do what you like. Change the design and edit how you what suits you. The download includes the HTML, CSS and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kobusswartz.co.za/Premium-hosting-template"><img class="alignnone size-full wp-image-159" title="PremiumHostingPreview" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/PremiumHostingPreview.png" alt="" width="600" height="200" /></a><br />
Web Designers tutorials decided to give away an awesome Premium web hosting template, free for you to download and do what you like.<span id="more-152"></span></p>
<p>Change the design and edit how you what suits you. The download includes the HTML, CSS and PHP files. The site has a full web 2.0 product table styled to display hosting, domains and any products you might want to sell. The temlpate also includes a PHP contact form that&#8217;s ready to go. Basically, all you have to do is insert your content and upload your site.</p>
<h2>Home Page Preview</h2>
<p>The home page consists of a free coloumn layout followed by a 1 coloum layout underneath.</p>
<p><img class="alignnone size-full wp-image-160" title="preview2" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/preview2.png" alt="" width="600" height="500" /></p>
<h2>Product List Table</h2>
<p>The product list table consists of all the hosting package details, you can ofcourse edit this as you like.</p>
<p><img class="alignnone size-full wp-image-161" title="preview3" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/preview3.png" alt="" width="600" height="500" /></p>
<h2>PHP Contact Form</h2>
<p>The PHP contact form is a basic PHP contact form that is already installed and fully working, all you have to to is edit the mailto settings and it works.</p>
<p><img class="alignnone size-full wp-image-162" title="preview4" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/preview4.png" alt="" width="600" height="500" /></p>
<p>If you end up editing or using this theme, please send me a link, I would like to see hou you implement it.</p>
<p>&nbsp;</p>
<p><a class="download" href="http://www.kobusswartz.co.za/downloads/PremiumHostingTheme.zip"> PremiumHostingTheme.zip</a> (712kb)</p>
<p><a href="http://www.kobusswartz.co.za/downloads/PremiumHostingTheme.zip"><img src="http://www.kobusswartz.co.za/images/download_btn.png" alt="" width="220" height="42" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kobusswartz.co.za/premium-hosting-template/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Beginners PHP: The PHP $_POST Function Explained</title>
		<link>http://kobusswartz.co.za/beginners-php-the-php-_post-function-explained/</link>
		<comments>http://kobusswartz.co.za/beginners-php-the-php-_post-function-explained/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 22:29:31 +0000</pubDate>
		<dc:creator>Kobus Swartz</dc:creator>
				<category><![CDATA[Coding Tutorials]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[$_POST Function]]></category>
		<category><![CDATA[easy PHP for beginners]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://kobusswartz.co.za/?p=143</guid>
		<description><![CDATA[In this tutorial we will have a look at using PHP&#8217;s $_POST function. It&#8217;s main use is to retieve variable from a form, inserting it into the Mysql database and/or displaying it on the page. For this exercise we will [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kobusswartz.co.za/beginners-php-the-php-_post-function-explained"><img class="alignnone size-full wp-image-144" title="php post function preview" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/php-post-function-preview.png" alt="" width="600" height="200" /></a>In this tutorial we will have a look at using PHP&#8217;s $_POST function. It&#8217;s main use is to retieve variable from a form, inserting it into the Mysql database and/or displaying it on the page. For this exercise we will have a user form and use the PHP $_POST function to retrieve the data.<span id="more-143"></span></p>
<h2>Step 1</h2>
<p>Create a basic HTML form but add the &#8216;action&#8217; and &#8216;method&#8217; to the form tag:</p>
<div id="head"><span style="color: #fff;">&lt;</span>Here&#8217;s The Code<span style="color: #fff;">&gt;</span> The HTML</div>
<div id="codeBox">
<p>&lt;form action=&#8221;showvariables.php&#8221; method=&#8221;post&#8221;&gt;</p>
<p>Fill in your details:</p>
<p>Name</p>
<p>&lt;input type=&#8221;text&#8221; name=&#8221;yourname&#8221; /&gt;</p>
<p>Age</p>
<p>&lt;input type=&#8221;text&#8221; name=&#8221;age&#8221; /&gt;</p>
<p>&lt;input type=&#8221;submit&#8221; value=&#8221;Show me&#8221; /&gt;</p>
<p>&lt;/form&gt;</p>
</div>
<p>The &#8216;action&#8217; syntax tells the form which page to load with the necessary php code to display your variables which are retrieved<br />
from the form, in this case we will name it showvariables.php.<br />
The &#8216;method&#8217; syntax states that the &#8216;post&#8217; method will be used, that means that the value of the variables will not be seen in the address bar.</p>
<div id="head"><span style="color: #fff;">&lt;</span>Here&#8217;s The Code<span style="color: #fff;">&gt;</span> The PHP</div>
<div id="codeBox">
<p>&lt;?php</p>
<p>$name = $_POST['yourname'];</p>
<p>$age = $_POST['age'];</p>
<p>echo &#8220;Welcome $name, are you realy $age years old ?&#8221;;</p>
<p>?&gt;</p>
</div>
<p>As you can see, we give each input tag a name(yourname) and (age), by doing this, when the form is submitted, PHP will see what values were inserted into the input fields and get the name of the input field and then connect the input field with the PHP variables on the next page in the PHP document.</p>
<p>Download the source files here &gt; <a href="http://www.kobusswartz.co.za/downloads/phpPostFunction.zip"><img class="alignnone size-full wp-image-145" title="download_btn" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/download_btn9.png" alt="" width="220" height="42" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kobusswartz.co.za/beginners-php-the-php-_post-function-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extra Light Easy CSS Light box without JavaScript</title>
		<link>http://kobusswartz.co.za/easy-css-light-box-without-javascript/</link>
		<comments>http://kobusswartz.co.za/easy-css-light-box-without-javascript/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 21:43:48 +0000</pubDate>
		<dc:creator>Kobus Swartz</dc:creator>
				<category><![CDATA[HTML & CSS]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[css lightbox]]></category>
		<category><![CDATA[easy lightbox]]></category>
		<category><![CDATA[lightbox]]></category>

		<guid isPermaLink="false">http://kobusswartz.co.za/?p=133</guid>
		<description><![CDATA[Finally an easy clean basic web 2.0 light box that&#8217;s easy to use and install, the only installation instructions are copy and paste ! I&#8217;m not going to go deep into this one, it&#8217;s quite basic, this light box pop [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kobusswartz.co.za/easy-css-light-box-without-javascript"><img class="alignnone size-full wp-image-136" title="lightboxpreview" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/lightboxpreview.png" alt="" width="600" height="200" /></a><br />
Finally an easy clean basic web 2.0 light box that&#8217;s easy to use and install, the only installation instructions are copy and paste !<span id="more-133"></span></p>
<p>I&#8217;m not going to go deep into this one, it&#8217;s quite basic, this light box pop up uses CSS to open, not like the hectic Javascript boxes that has 8000 lines of code and takes a couple of generations to understand.</p>
<p>The Following code goes into your &lt;body&gt;&lt;/body&gt; tags:</p>
<div id="head"><span style="color: #fff;">&lt;</span>Here&#8217;s The Code<span style="color: #fff;">&gt;</span> The HTML</div>
<div id="codeBox">
<p>&lt;div id=&#8221;wrapper&#8221; align=&#8221;center&#8221;&gt;</p>
<p>&lt;p&gt;Some Page Content, Click &lt;a href = &#8220;javascript:void(0)&#8221; onclick = &#8220;document.getElementById(&#8216;light&#8217;).style.display=</p>
<p>&#8216;block&#8217;;document.getElementById(&#8216;fade&#8217;).style.display=&#8217;block&#8217;&#8221;&gt;here&lt;/a&gt; To View The Lightbox&lt;/p&gt;</p>
<p>&lt;div id=&#8221;light&#8221; class=&#8221;content&#8221;&gt;</p>
<p>&lt;div id=&#8221;light&#8221;&gt; This will be your LightBox Content&lt;/div&gt;</p>
<p>&lt;div id=&#8221;close&#8221;&gt;&lt;a  href = &#8220;javascript:void(0)&#8221; onclick = &#8220;document.getElementById(&#8216;light&#8217;).style.display=&#8217;none&#8217;;document.getElementById(&#8216;fade&#8217;)</p>
<p>.style.display=&#8217;none&#8217;&#8221; &gt;&lt;img src=&#8221;images/close.png&#8221; /&gt;&lt;/a&gt;&lt;/div&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;div id=&#8221;fade&#8221; class=&#8221;black_overlay&#8221;&gt;&lt;/div&gt;</p>
<p>&lt;/div&gt;</p>
</div>
<p>Insert this part into your CSS head section or external style sheet:</p>
<div id="head"><span style="color: #fff;">&lt;</span>Here&#8217;s The Code<span style="color: #fff;">&gt;</span> The HTML</div>
<div id="codeBox">
<p>&lt;style&gt;</p>
<p>body {</p>
<p>font-family:Arial, Helvetica, sans-serif;</p>
<p>color:#FFF;</p>
<p>font-size:18px;</p>
<p>}</p>
<p>img {</p>
<p>border:none;</p>
<p>}</p>
<p>#wrapper {</p>
<p>position:relative;</p>
<p>width:800px;</p>
<p>height:300px;</p>
<p>margin-left:20%;</p>
<p>margin-right:20%;</p>
<p>border:1px dotted #C30;</p>
<p>-moz-border-radius: 11px;</p>
<p>-webkit-border-radius: 11px;</p>
<p>-khtml-border-radius: 11px;</p>
<p>border-radius: 11px;</p>
<p>background-color:#333;</p>
<p>padding:10px;</p>
<p>}</p>
<p>.lightbox {</p>
<p>display:none;</p>
<p>width:550px;</p>
<p>height:350px;</p>
<p>background-repeat:no-repeat;</p>
<p>}</p>
<p>.content {</p>
<p>display:none;</p>
<p>width:550px;</p>
<p>height:auto;</p>
<p>background-color:#FFF;</p>
<p>border: 1px solid #C63;</p>
<p>z-index:1000;</p>
<p>}</p>
<p>#close {</p>
<p>position:relative;</p>
<p>margin-top:-53px;</p>
<p>margin-left:530px;</p>
<p>}</p>
<p>#light {</p>
<p>padding: 20px 20px 20px 20px;</p>
<p>background-color:#eeeeee;</p>
<p>color:#FFF;</p>
<p>font-weight:bold;</p>
<p>background-image: url(bg.png);</p>
<p>-moz-border-radius: 11px;</p>
<p>-webkit-border-radius: 11px;</p>
<p>-khtml-border-radius: 11px;</p>
<p>border-radius: 11px;}</p>
<p>a:link {</p>
<p>color:#C60;</p>
<p>text-decoration:none;</p>
<p>}</p>
<p>a:hover {</p>
<p>color::#C03;</p>
<p>text-decoration:none;</p>
<p>}</p>
<p>&lt;/style&gt;</p>
</div>
<p>&nbsp;</p>
<p><strong>How it works:</strong></p>
<p>The light box is mainly controlled by the CSS and Divs. When it calls the &#8220;document.getElementById&#8221; it basically loads the css box styles and displays your light box. This specific light box is extra light because of the fact that it does not carry any extra JavaScript to load, so everything is static and preloaded for this one. You cam always pop in some extra Javascipt to make it slide open or shift down from wherevver, just thought I&#8217;d share the easy version.</p>
<p>Download the source files: <a href="http://www.kobusswartz.co.za/downloads/extrlightLightBox.zip"><img class="alignnone size-full wp-image-140" title="download_btn" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/download_btn8.png" alt="" width="220" height="42" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kobusswartz.co.za/easy-css-light-box-without-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Copying Designs: Stealing or Borrowed Inspiration?</title>
		<link>http://kobusswartz.co.za/copying-designs-stealing-or-borrowed-inspiration/</link>
		<comments>http://kobusswartz.co.za/copying-designs-stealing-or-borrowed-inspiration/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 11:23:39 +0000</pubDate>
		<dc:creator>Kobus Swartz</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[kobus swartz]]></category>
		<category><![CDATA[stealing designs]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://kobusswartz.co.za/?p=127</guid>
		<description><![CDATA[If you are a designer you have most probably experienced a situation where you have a certain design or concept which you have to work on, whether it be a logo, poster, web design, t-shirt or a simple business card. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.kobusswartz.co.za/copying-designs-stealing-or-borrowed-inspiration"><img class="alignnone size-full wp-image-128" title="stealing designs 1" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/stealing-designs-1.png" alt="" width="600" height="200" /></a>If you are a designer you have most probably experienced a situation where you have a certain design or concept which you have to work on, whether it be a logo, poster, web design, t-shirt or a simple business card. What happens if you have designers block and don&#8217;t have any inspiration, to you borrow or steal? <strong>By</strong> <em>Kobus Swartz</em><span id="more-127"></span></p>
<div id="spacer"></div>
<p><strong>Why designers steal </strong></p>
<p>If you are a designer you have most probably experienced a situation where you have a certain design or concept which you have to work on, whether it be a logo, poster, web design, t-shirt or a simple business card. The client briefs you on what he wants, all excited you head home with a bunch of idea&#8217;s running through your head, you think about the layout the client wants, what colours they want you to use and how it&#8217;s all going to come together.</p>
<p>You get home, make some coffee, a pencil and piece of paper and start planning your design, most of it is clear in your head and when you think you have a solid idea you sit yourself down in front of your laptop, open Photoshop and with the clients idea&#8217;s and yours, you sit and stare at a blank screen. All the ideas and concepts you had in your head can all of a sudden not work anymore, you start drawing shapes, mix it with colours and realise you don&#8217;t actually know what you want to do, you actually have no idea or direction in which you want the design and layout to go ?</p>
<p><strong>So what now?</strong></p>
<p>You start googling design, ideas and inspirations just because you can&#8217;t come up with an idea with what to do for the client, you see a great looking idea and you say to yourself, that&#8217;s what I want my design to look like, that&#8217;s what the client explained to me when he said he wanted a non-flashy but flashy, colourful but neutral, edgy but easy on the eye design. So you save the image or take a screenshot and start you &#8220;new&#8221; design for the client based on a designed you saw on the internet.</p>
<p>Is there anything wrong in stealing a design that you like and inspired you? My personal opinion is no, there&#8217;s nothing wrong with stealing a design that inspired you. As long as you don&#8217;t copy the design right down to the last pixel. This is not a public service announcement encouraging you to steal designs.</p>
<p><strong>Why you can steal designs</strong></p>
<p>Just like any other industry, the design community has trend setters, there are designers and developers that set standards which people won&#8217;t think twice about not following. If you couldn&#8217;t steal ideas from an inspirational design, there wouldn&#8217;t be any &#8216;trend setters&#8217; or designers setting standards, there wouldn&#8217;t be any &#8220;Rock Star&#8221; designers. So thanks to you, there are designer who are regarded as rock star designers, why? Because the designs and concepts they make bring out are envied by others designers, people want to do designs like that, that&#8217;s why there works ends up on top tutorial sites. The work ends up in a tutorial which basically means that they are offering you assistance in stealing the design, telling you what colours to use and how to get that special effect. So at the end of the day, whether you are assisted in stealing an idea or design or searching for an idea yourself, it comes down to the same thing.</p>
<p><img class="alignnone size-full wp-image-129" title="Corporate-moose" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/Corporate-moose.png" alt="" width="600" height="420" /></p>
<p><strong>Why you should not steal designs</strong></p>
<p>The only time when you should not steal a design is when you copy the design right down to the last pixel. What can also cause a personal issue is if you use that same design for the next client and the client actually finds out, that won&#8217;t be good for your image now would it? This does not mean that you shouldn&#8217;t use your own brain to come up with concepts and just keep on stealing designs. If the need is there to search for some external inspiration, there&#8217;s nothing wrong with that.</p>
<p>This article isn&#8217;t about me motivating you to steal every time you do a design, this article is about setting the record straight about looking for inspiration, as a designer, you always have inspiration; you just have to look a bit harder sometimes.<br />
It does not mean that you should go and copy the whole design, you can get inspiration from someone else&#8217;s designs and layout&#8217;s in many ways, for example, be inspired by their colour scheme if it&#8217;s eye candy and they use beautiful colours, or maybe an unique layout, it might also be a simple button on the website. Just keep in mind at the end of the day, when you finished your design and the inspiration came from your own thoughts, it&#8217;s your master piece and you are setting the standards</p>
<p><strong>Think about this for a minute</strong></p>
<p><em>If a homeless person stole food because he didn&#8217;t have money to buy any food, would it be wrong for a designer to steal a design because he didn&#8217;t have inspiration at that time?</em></p>
<p><strong>By</strong> <em>Kobus Swartz</em></p>
]]></content:encoded>
			<wfw:commentRss>http://kobusswartz.co.za/copying-designs-stealing-or-borrowed-inspiration/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Designer Portfolio Sites of the Week</title>
		<link>http://kobusswartz.co.za/designer-portfolio-sites-of-the-week/</link>
		<comments>http://kobusswartz.co.za/designer-portfolio-sites-of-the-week/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 22:30:56 +0000</pubDate>
		<dc:creator>Kobus Swartz</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://kobusswartz.co.za/?p=112</guid>
		<description><![CDATA[A collection of South African Designers specializing in all sorts of design discipline, have a look at some of their stunning work. Orla Hunter Sugar and Spice Graphic Design Erica Designs If you think you have a portfolio blog or site [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://kobusswartz.co.za/designer-portfolio-sites-of-the-week"><img class="alignnone size-full wp-image-113" title="portfolio site preview" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/portfolio-site-preview.png" alt="" width="600" height="200" /></a>A collection of South African Designers specializing in all sorts of design discipline, have a look at some of their stunning work.<span id="more-112"></span></p>
<p><a href="http://www.orlahunter.com/"><br />
</a></p>
<h2><a href="http://www.orlahunter.com/">Orla Hunter</a></h2>
<p><img class="alignnone size-full wp-image-114" title="orlahunter" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/orlahunter.png" alt="" width="600" height="559" /></p>
<p><a href="http://www.sugarandspicegraphicdesign.com/"><br />
</a></p>
<h2><a href="http://www.sugarandspicegraphicdesign.com/">Sugar and Spice Graphic Design</a></h2>
<p><a href="http://www.sugarandspicegraphicdesign.com/"><img class="alignnone size-full wp-image-115" title="sagarandspice" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/sagarandspice.png" alt="" width="600" height="559" /> </a></p>
<p><a href="http://www.ericadesigns.co.za/"><br />
</a></p>
<h2><a href="http://www.ericadesigns.co.za/">Erica Designs</a></h2>
<p><a href="http://www.ericadesigns.co.za/"><img class="alignnone size-full wp-image-116" title="ericadesigns" src="http://kobusswartz.co.za/wp-content/uploads/2011/07/ericadesigns.png" alt="" width="600" height="559" /></a></p>
<p>If you think you have a portfolio blog or site that would inspire fellow designers send me an email info@kobusswartz.co.za</p>
]]></content:encoded>
			<wfw:commentRss>http://kobusswartz.co.za/designer-portfolio-sites-of-the-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

