<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/2.3.3" --><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Cutting Edge Tutorials</title>
	<link>http://www.cuttingedgetutorials.com</link>
	<description>Tutorials from the Front line of Web Development</description>
	<pubDate>Mon, 06 Jul 2009 19:01:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
	        		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/CuttingEdgeTutorials" type="application/rss+xml" /><item>
		<title>Creating a PayPal Payment Form</title>
		<link>http://feedproxy.google.com/~r/CuttingEdgeTutorials/~3/4uz2uX-JN5o/</link>
		<comments>http://www.cuttingedgetutorials.com/2008/04/22/creating-a-paypal-payment-form/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 09:37:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://nettuts.com/?p=6</guid>
		<description><![CDATA[<img src="http://nettuts.com/wp-content/uploads/paypal.jpg">]]></description>
			<content:encoded><![CDATA[Although it can have <a href="http://freelanceswitch.com/the-business-of-freelancing/freelancers-beware-of-receiving-payments-via-credit-card-through-paypal/">some issues</a>, PayPal does provide a very simple way to take payments on a website. And with a little tweaking you can easily turn a PayPal “Buy Now” button into a form where the user specifies how much they’d like to pay and what they are paying for.
<h3>How it Works</h3>
PayPal makes doing this very easy by providing those “Buy Now” buttons you’ve probably seen around the place.  Basically when you see one of those buttons, it is really the <em>submit</em> button on an HTML form with all the form fields set to <em>hidden</em>.  This is fine for when you have a set price and set item, but what if you want the user to specify how much they are paying, and what they are paying for.

For example if you are adding a payment form to your freelancing site then you would want the client to type in their invoice number and the amount they wish to pay.  This is easily done by changing the <code>&lt;input&gt;</code> fields from <strong>hidden</strong> to <strong>text</strong> and stripping away the defaults so that the user can fill them in. So let’s get started.
<h3>Step 1</h3>
<p class="tutorial_image"><img src="http://nettuts.com/wp-content/uploads/2008/04/payment.jpg" /></p>
The first thing we need is a page to return to after the transaction.  In my example I’m creating a donation form for NETTUTS, so I created this <a href="http://nettuts.com/payment-complete/">Payment Confirmation</a> page.
<h3>Step 2</h3>
<p class="tutorial_image"><img src="http://nettuts.com/wp-content/uploads/2008/04/paynow.jpg" /></p>
Next we log into our PayPal account and click the <strong>Merchant Services</strong> tab. Down the bottom right you’ll see a link that says <strong>Buy Now Buttons</strong>, follow that through and you get to a form to create one of these buttons.

Complete the form, under item ID just type the number 1, and use similar dummy numbers for the Item Name and Price.  We’ll change those in the code later. Make sure you do NOT encrypt the button. The rest of the fields (weight etc) can be left blank.
<h3>Step 3</h3>
<pre name="code" class="html">
&lt;form action="https://www.paypal.com/cgi-bin/webscr" method="post"&gt;
    &lt;input type="hidden" name="cmd" value="_xclick"&gt;
    &lt;input type="hidden" name="business" value="accounts@freelanceswitch.com"&gt;
    &lt;input type="hidden" name="item_name" value="Donation"&gt;
    &lt;input type="hidden" name="item_number" value="1"&gt;
    &lt;input type="hidden" name="amount" value="9.00"&gt;
    &lt;input type="hidden" name="no_shipping" value="0"&gt;
    &lt;input type="hidden" name="no_note" value="1"&gt;
    &lt;input type="hidden" name="currency_code" value="USD"&gt;
    &lt;input type="hidden" name="lc" value="AU"&gt;
    &lt;input type="hidden" name="bn" value="PP-BuyNowBF"&gt;
    &lt;input type="image" src="https://www.paypal.com/en_AU/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online."&gt;
    &lt;img alt="" border="0" src="https://www.paypal.com/en_AU/i/scr/pixel.gif" width="1" height="1"&gt;
&lt;/form&gt;</pre>
Here’s the code that PayPal gives me. As you can see the button is in fact a <code>&lt;form&amp;rt;</code> element that uses an image submit button. Most importantly we can change any of those hidden. input fields to actual text fields simply by changing the word <strong>hidden</strong> to <strong>text</strong>.

This would mean that for example instead of specifying the <strong>amount</strong> value to be 9.00, we can allow the user to type in the value they wish to pay.  Similarly the <strong>item_name</strong> can also be a user input.

Here’s a run down of the fields you’ll be interested in changing:
<ul>
	<li><strong>Item Number</strong>
The value you place in this field appears when the user goes to PayPal and clicks the down arrow for more details on their purchase (you can see it by entering some information in the test form below).</li>
	<li><strong>Business</strong>
This field is for the PayPal account being paid to.  Make sure it’s set to your account.  The one I’m using is for accounts [@] freelanceswitch.com (which is linked to our sister site FreelanceSwitch).</li>
	<li><strong>Currency Code</strong>
This is pretty straightforward.  When creating the Buy Now button you can select different options for this setting. If for some reason you wanted to, you could also change this to a <code>&lt;select&gt;</code> element and let your user choose what currency to pay in.</li>
	<li><strong>Item Name</strong>
The item_name field is the one where your user describes what they are paying for.  In the example form below I’ve used a select box to let the user choose what they are donating towards.  You could just as easily change it to a text field and let the user type something in.</li>
	<li><strong>Amount</strong>
The only thing to note here, is that if the user types anything other than a number in here PayPal will return an error, so you might want to use some Javascript to do validation on this field and ensure it’s a number - though that would be a whole other tutorial.  So instead for my example form I’ve just written a $ sign before the text field, hoping that will make it a little more self explanatory.</li>
</ul>
<h3>Step 4</h3>
You might have noticed that there is no space for a return URL.  Happily in a previous version of the Buy Now button form, there used to be, and the value still works.  You simply need to add this line to your form (substituting in the appropriate return URL of course!).
<pre name="code" class="html">

&lt;input type="hidden" name="return" value="http://nettuts.com/payment-complete/"&gt;</pre>
<h3>Step 5</h3>
Since that PayPal button is pretty ugly, I’m also going to switch back to a regular submit button.  To do this we simply swap the <code>&lt;input type='image'&gt;</code> element with a regular <code>&lt;input type='submit'&gt;</code> element, like this:
<pre name="code" class="html">

&lt;input type="submit" value="Pay with PayPal!"&gt;</pre>
<h3>Step 6</h3>
<big><strong>Make a Donation to NETTUTS</strong></big>
Fill out the form and send us a few dollars for your favourite tutorial:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input name="cmd" value="_xclick" type="hidden" /> <input name="business" value="accounts@freelanceswitch.com" type="hidden" />     <strong>Donation / Contribution?</strong> <select name="item_name">       <option value="Donation">Donation</option>       <option value="Contribution">Contribution</option>     </select>    <strong>Which tutorial are you donating for?</strong>

<select name="item_number">       <option value="PayPal Form Tutorial">The PayPal Form Tutorial</option>       <option value="Amazon S3 Tutorial">The Amazon S3 Tutorial</option>       <option value="Some Other Tutorial">Some Other Tutorial</option>     </select>    <strong>How much do you want to donate?</strong>
$

<input name="amount" type="text" /> <input name="no_shipping" value="0" type="hidden" /> <input name="no_note" value="1" type="hidden" /> <input name="currency_code" value="USD" type="hidden" /> <input name="lc" value="AU" type="hidden" /> <input name="bn" value="PP-BuyNowBF" type="hidden" /> <input name="return" value="http://nettuts.com/payment-complete/" type="hidden" /> <input value="Pay with PayPal!" class="button" type="submit" /> </form>

So there you have it.  In the somewhat silly example above I’ve used two <code>&lt;select&gt;</code> fields.  You could of course use regular text fields or really any combination.  You can even leave fields out, for example it’s not really necessary to have the item_number and item_name in my example.

If you fill out the form and press Pay, you’ll see where the three inputs appear in PayPal - don’t worry you don’t need to <em>actually</em> pay!

Here’s the final code I used:
<pre name="code" class="html">

&lt;p&gt;&lt;big&gt;&lt;b&gt;Make a Donation to NETTUTS&lt;/b&gt;&lt;/big&gt;&lt;br /&gt;
Fill out the form and send us a few dollars for your favourite tutorial:&lt;/p&gt;

&lt;form action="https://www.paypal.com/cgi-bin/webscr" method="post"&gt;

    &lt;input type="hidden" name="cmd" value="_xclick"&gt;
    &lt;input type="hidden" name="business" value="accounts@freelanceswitch.com"&gt;
    &lt;strong&gt;Donation / Contribution? &lt;/strong&gt;&lt;br /&gt;
    &lt;select name="item_name"&gt;
      &lt;option value="Donation"&gt;Donation&lt;/option&gt;
      &lt;option value="Contribution"&gt;Contribution&lt;/option&gt;
    &lt;/select&gt;

    &lt;strong&gt;Which tutorial are you donating for?&lt;/strong&gt;&lt;br /&gt;
    &lt;select name="item_number"&gt;
      &lt;option value="PayPal Form Tutorial"&gt;The PayPal Form Tutorial&lt;/option&gt;
      &lt;option value="Amazon S3 Tutorial"&gt;The Amazon S3 Tutorial&lt;/option&gt;
      &lt;option value="Some Other Tutorial"&gt;Some Other Tutorial&lt;/option&gt;
    &lt;/select&gt;

    &lt;strong&gt;How much do you want to donate?&lt;/strong&gt;&lt;br /&gt;
    $ &lt;input type="text" name="amount"&gt;

    &lt;input type="hidden" name="no_shipping" value="0"&gt;
    &lt;input type="hidden" name="no_note" value="1"&gt;
    &lt;input type="hidden" name="currency_code" value="USD"&gt;
    &lt;input type="hidden" name="lc" value="AU"&gt;
    &lt;input type="hidden" name="bn" value="PP-BuyNowBF"&gt;
	&lt;input type="hidden" name="return" value="http://nettuts.com/payment-complete/"&gt;

	&lt;br /&gt;&lt;br /&gt;
    &lt;input type="submit" value="Pay with PayPal!"&gt;

&lt;/form&gt;</pre><img src="http://feeds.feedburner.com/~r/CuttingEdgeTutorials/~4/4uz2uX-JN5o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cuttingedgetutorials.com/2008/04/22/creating-a-paypal-payment-form/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cuttingedgetutorials.com/2008/04/22/creating-a-paypal-payment-form/</feedburner:origLink></item>
		<item>
		<title>Create an Illustrated Look From a Photograph</title>
		<link>http://feedproxy.google.com/~r/CuttingEdgeTutorials/~3/GjxxrMYgMzQ/</link>
		<comments>http://www.cuttingedgetutorials.com/2008/03/11/create-an-illustrated-look-from-a-photograph/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 04:12:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Graphics]]></category>

		<guid isPermaLink="false">http://psdtuts.com/photo-effects-tutorials/create-an-illustrated-look-from-a-photograph/</guid>
		<description><![CDATA[<img src="http://psdtuts.s3.amazonaws.com/68_Trace/200x200.jpg">]]></description>
			<content:encoded><![CDATA[In this tutorial I will show you how the create a stylized illustrated look from a photograph. The best part is that it requires no artistic ability! You can do this to any photo and pretty much any subject but I think it works best with people.
<h3>Before/After</h3>
You can see a Before/After below (just roll over the image once it’s all loaded in).  I bought my image from iStockPhoto - <a href="http://www.istockphoto.com/file_closeup/object/3759495_affluent_travel_beautiful_woman_arriving_at_airport.php?id=3759495">here’s the item</a> (Note if you download the sample PSD file from PSDTUTS Plus, the image has a watermark over it, so you’ll need to purchase it and swap it in).

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/before_nm.jpg" />
<h3>Step One:</h3>
Create a new <em><strong>Solid Color Adjustment layer</strong></em> and fill it with White. Above that layer, create a new blank layer by hitting the <em><strong>New Layer Button</strong></em> at the bottom of the layer palette. Name that layer <em><strong>"Basic Shapes"</strong></em>. Now turn both of those layers off.
<h3>Step Two:</h3>
We are going to use the <em><strong>Pen Tool (P)</strong></em> to trace all of the basic structural elements of the image. In my case it will be the outline of the body and the outlines of the clothes.

With the pen tool selected simply click anywhere you would like to start then continue to click and drag to trace the part you are working on with the path. To make it look more like a sketch we are going to use a lot of small paths rather than trace the whole thing with one long path. When you come to a place where you think the path should end, hold down the <em><strong>CMD (or CTRL) </strong></em> key and click anywhere off the path. That will deselect it and now you are free to create another one. Keep doing this until all of your basic shapes are traced. Here are a few shots of how I traced my image:

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-1.jpg" />

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-2.jpg" />

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-3.jpg" />

A common misconception is that a path needs to be a loop. Not true. We are going to use all "open paths" in this tutorial.
<h3>Step Three:</h3>
Turn on your white layer and your blank layer. Select the blank layer. In the paths palette drag your work path down to the New Path button at the bottom of the palette to save it. Select the brush tool and open the brushes palette. Select any round, hard brush preset. Under the <em><strong>Brush Tip Shape</strong></em> section modify the brush to create a thin ellipse by bringing the <em><strong>roundness</strong></em> down to <em><strong>12%</strong></em>. Make the <em><strong>angle 45 degrees</strong></em>. Turn on the <em><strong>Shape Dynamics</strong></em> section bring the <em><strong>Size Jitter</strong></em> to 100, the <em><strong>Minimum diameter</strong></em> to 35, and the <em><strong>Angle Jitter</strong></em> to 5.

With the blank layer still selected hit D to make black your foreground color then <em><strong>right/control + click</strong></em> on the path and choose <em><strong>Stroke Path</strong></em>. Make sure that <em><strong>Simulate Pressure is checked</strong></em> and use <em><strong>Brush</strong></em> as your source. Hit OK. You might have to adjust the <em><strong>Master Diameter</strong></em> in the brushes palette if the lines are too thin or thick.

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-4.jpg" />

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-5.jpg" />

Repeat steps 2 and 3 a few more times, each time getting more and more detailed in what you trace. The more detail you trace, the thinner you should set the Master Diameter on the brushes palette. Each time you do a pass make sure to apply the stroke onto a new layer.

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-6.jpg" />

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-7.jpg" />
<h3>Step Four:</h3>
Now that we have the outlines, lets paint in some color. Duplicate the the layer that contains your photograph. Put the copy at the top, above all the other layers. Set the <em><strong>Blending Mode</strong></em> to "<em><strong>Color</strong></em>".

Hit B for the <em><strong>Brush Tool</strong></em>. In the brushes palette set the <em><strong>Brush Angle</strong></em> to -45 degrees and turn off the <em><strong>Shape Dynamics.</strong></em> Make the brush a bit larger.

Make a new blank layer and call it "<em><strong>Paint</strong></em>". Make sure that its below all of your outline layers. Make sure that you  foreground color is still set to black. In the properties bar set the opacity of the brush to 10%. Very roughly paint in the color where you want it. Be sure to release the mouse every now and then so that the color begins to multiply over itself. Dont worry about staying in the lines too much. I used a Wacom Tablet so it was easy for me to get nice strokes but if all you have is a mouse just do the best you can.

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-8.jpg" />
<h3>Step Five:</h3>
Hit E for the <em><strong>Eraser Tool</strong></em>. Set the eraser brush up the same way that we did the paint brush. Make sure that the eraser brush’s <em><strong>opacity</strong></em> is at 50%. Now go back and tidy up your paint job. I like it when you can still slightly see the paint going over the lines.
<h3>Step Six:</h3>
On my image, I want the pants to be blue instead of that peachy color so I am going to make a new <em><strong>Hue/Saturation Adjustment layer</strong></em> at the very top of the layers palette. Drag the Hue slider over until you get the hue that you like. Adjust the saturation as you like. Wait, the whole image changed! Thats OK we are going to fix that.

Click on the layer mask thumbnail on the Hue/Sat layer and hit <em><strong>CMD+I </strong></em>to invert it. The image will go back to the way it was before. Set your background color to White and select the <em><strong>Eraser Tool</strong></em>. Set the eraser’s opacity to 100% and paint on the mask so that the hue adjustment we made appears. Now just paint where you want the color shift.

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-9.jpg" />

Continue this way until you are appy with the colors.

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-10.jpg" />

The shirt adjusted.

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/Picture-11.jpg" />

The skin tone adjusted.
<h3>Step Seven:</h3>
Make one more new blank layer just below the "Paint" layer. Call it "<em><strong>bkg paint</strong></em>". Select the brush tool again and make the master diameter huge. Mine is at 200. With the brush opacity at 5% do a few really broad strokes across the whole image just to bring in a little color to the background.

<img src="http://psdtuts.s3.amazonaws.com/68_Trace/final.jpg" />

<a href="http://jobs.freelanceswitch.com"><img src="http://miiingle.com/adverts/FSw_Jobs_468x60.jpg" border="0" /></a>

<a href="http://freelanceswitch.com/jobs"><img src="http://freelanceswitch.s3.amazonaws.com/rockstar/468x60.jpg" border="0" /></a>

<a href="http://feeds.feedburner.com/~a/psdtuts?a=mT1AH2"><img src="http://feeds.feedburner.com/~a/psdtuts?i=mT1AH2" border="0" /></a>

<img src="http://feeds.feedburner.com/~r/psdtuts/~4/249906874" height="1" /><img src="http://feeds.feedburner.com/~r/CuttingEdgeTutorials/~4/GjxxrMYgMzQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cuttingedgetutorials.com/2008/03/11/create-an-illustrated-look-from-a-photograph/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cuttingedgetutorials.com/2008/03/11/create-an-illustrated-look-from-a-photograph/</feedburner:origLink></item>
		<item>
		<title>Reader Request: MSNBC Style Effect</title>
		<link>http://feedproxy.google.com/~r/CuttingEdgeTutorials/~3/ZQAVp84zgXY/</link>
		<comments>http://www.cuttingedgetutorials.com/2008/02/20/reader-request-msnbc-style-effect/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 05:51:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Graphics]]></category>

		<guid isPermaLink="false">http://psdtuts.com/tutorials-effects/reader-request-msnbc-style-effect/</guid>
		<description><![CDATA[In this tutorial I will create an effect like the one in the header of the MSNBC.com website.]]></description>
			<content:encoded><![CDATA[In this tutorial I will create an effect like the one in the header of the MSNBC.com website. This effect is a reader’s request tutorial.

If you have an effect you want to know how to achieve, just let us know in the comments and we will try to write a tutorial about it.
<h3>Step 1</h3>
Create a new document. Double click on the background layer to open the <strong>Layer Styles.</strong> Select the <strong>Gradient Overlay</strong> and use black and a dark blue for the colors. Select <strong>Radial for the Gradient Style.</strong>

<img src="http://psdtuts.s3.amazonaws.com/49_nbc/nbc_s1.jpg" />
<h3>Step 2</h3>
Create a new layer and fill it with black.

<img src="http://psdtuts.s3.amazonaws.com/49_nbc/nbc_s2.jpg" />
<h3>Step 3</h3>
First select black for the foreground color and a medium grey for the background color. Go to <strong>Filters&gt;Render&gt;Fibers. Set 36 for the Variance and 1 for the Strength.</strong>

<img src="http://psdtuts.s3.amazonaws.com/49_nbc/nbc_s3.jpg" />
<h3>Step 4</h3>
Go to <strong>Filters&gt;Blur&gt;Motion Blur</strong>. I set the <strong>distance to 999</strong>, the maximum value, but feel free to test another value. For the <strong>angle use 90º.</strong>

<img src="http://psdtuts.s3.amazonaws.com/49_nbc/nbc_s4.jpg" />
<h3>Step 5</h3>
Double click on the blurry layer in order to open the <strong>Layer Styles</strong> dialog box. <strong>Select Gradient Overlay and Overlay for the Blend Mode</strong>. For the colors use the rainbow colors: start with violet, blue, green, yellow, and red. I think those are the colors <img src="http://psdtuts.com/wp-includes/images/smilies/icon_smile.gif" alt=")" />

<img src="http://psdtuts.s3.amazonaws.com/49_nbc/nbc_s5.jpg" />
<h3>Step 6</h3>
Using the <strong>Lasso Tool (L),</strong> set the <strong>feather option to 30px</strong> and create a random selection like I did. After that go to <strong>Layer&gt;Layer Mask&gt;Reveal Selection.</strong>

<img src="http://psdtuts.s3.amazonaws.com/49_nbc/nbc_s6.jpg" />
<h3>Conclusion</h3>
This is a very simple but cool effect. You can use it for website headers, CD covers, and wherever you want - I’ve just created a beautiful wallpaper for my blog. Again, there are lots of ways to achieve the same result, maybe using other filters and settings. It’s all about playing with the tool. Additionally, if you are using the CS3 version of Photoshop you can use the Smart Filters to test different values and see the effects without worrying about losing the previous version.

<img src="http://psdtuts.s3.amazonaws.com/49_nbc/nbc_s7.jpg" />
<h3>Sample PSD</h3>
You can download the sample Photoshop file for this tutorial for $2.50 by clicking the button below.  Your contribution will help support PSDTUTS and keep the great tutorials coming!

<a href="https://www.e-junkie.com/ecom/gb.php?c=cart&amp;i=85428&amp;cl=12137&amp;ejc=2"><img src="https://www.e-junkie.com/ej/ej_add_to_cart.gif" border="0" /></a>

<a href="https://www.e-junkie.com/ecom/gb.php?c=cart&amp;cl=12137&amp;ejc=2"><img src="https://www.e-junkie.com/ej/ej_view_cart.gif" border="0" /></a>

<a href="http://jobs.freelanceswitch.com"><img src="http://miiingle.com/adverts/FSw_Jobs_468x60.jpg" border="0" /></a>

<a href="http://freelanceswitch.com/jobs"><img src="http://freelanceswitch.s3.amazonaws.com/rockstar/468x60.jpg" border="0" /></a>

<a href="http://feeds.feedburner.com/~a/psdtuts?a=XGOTru"><img src="http://feeds.feedburner.com/~a/psdtuts?i=XGOTru" border="0" /></a>

<img src="http://feeds.feedburner.com/~r/psdtuts/~4/238022021" height="1" /><img src="http://feeds.feedburner.com/~r/CuttingEdgeTutorials/~4/ZQAVp84zgXY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cuttingedgetutorials.com/2008/02/20/reader-request-msnbc-style-effect/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cuttingedgetutorials.com/2008/02/20/reader-request-msnbc-style-effect/</feedburner:origLink></item>
		<item>
		<title>Lifting the Skirt on Zend Framework 1.5: Zend_Auth and the OpenId Adapter.</title>
		<link>http://feedproxy.google.com/~r/CuttingEdgeTutorials/~3/WcmRIZ9rZ_E/</link>
		<comments>http://www.cuttingedgetutorials.com/2008/02/19/lifting-the-skirt-on-zend-framework-15-zend_auth-and-the-openid-adapter/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 14:56:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Zend]]></category>

		<guid isPermaLink="false">http://devzone.zend.com/article/3141-Lifting-the-Skirt-on-Zend-Framework-1.5-Zend_Auth-and-the-OpenId-Adapter.</guid>
		<description><![CDATA[<p>Probably my one favorite aspects of Zend Framework is that you can pull pieces out and use them by themselves without having to build a complete MVC installation.  Not that building out a complete installation is difficult but there are times when you just need a small piece, not the entire puzzle.  Zend_Auth is one of those pieces that can be pulled out and used by itself.  If you need authentication for an existing application Zend_Auth may just be the piece you are looking for.</p>]]></description>
			<content:encoded><![CDATA[Probably my one favorite aspects of Zend Framework is that you can pull pieces out and use them by themselves without having to build a complete MVC installation.  Not that building out a complete installation is difficult but there are times when you just need a small piece, not the entire puzzle.  Zend_Auth is one of those pieces that can be pulled out and used by itself.  If you need authentication for an existing application Zend_Auth may just be the piece you are looking for.<img src="http://feeds.feedburner.com/~r/CuttingEdgeTutorials/~4/WcmRIZ9rZ_E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cuttingedgetutorials.com/2008/02/19/lifting-the-skirt-on-zend-framework-15-zend_auth-and-the-openid-adapter/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cuttingedgetutorials.com/2008/02/19/lifting-the-skirt-on-zend-framework-15-zend_auth-and-the-openid-adapter/</feedburner:origLink></item>
		<item>
		<title>Add latest RSS items to Wordpress Post</title>
		<link>http://feedproxy.google.com/~r/CuttingEdgeTutorials/~3/yzlWUypxO5U/</link>
		<comments>http://www.cuttingedgetutorials.com/2008/02/18/add-latest-rss-item-to-wordpress-post/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 02:05:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[RSS]]></category>

		<category><![CDATA[SimplePie]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.cuttingedgetutorials.com/2008/02/18/add-latest-rss-item-to-wordpress-post/</guid>
		<description><![CDATA[If you&#8217;re using Wordpress to build a website showcase (or in my case  blog showcase), it&#8217;s nice to show the recent posts from that website in the showcase.
In this tutorial I&#8217;m going to show you how to do this, using the Wordpress Custom Fields feature and SimplePie.
Read more after the jump.
]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using <a href="http://www.wordpress.org">Wordpress</a> to build a website showcase (or in my case  <a href="http://www.iheartblogs.com">blog showcase</a>), it&#8217;s nice to show the recent posts from that website in the showcase.</p>
<p>In this tutorial I&#8217;m going to show you how to do this, using the Wordpress Custom Fields feature and <a href="http://www.simplepie.org">SimplePie</a>.</p>
<p>Read more after the jump.</p>
<p> <a href="http://www.cuttingedgetutorials.com/2008/02/18/add-latest-rss-item-to-wordpress-post/#more-46" class="more-link">(more&#8230;)</a></p>
<img src="http://feeds.feedburner.com/~r/CuttingEdgeTutorials/~4/yzlWUypxO5U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cuttingedgetutorials.com/2008/02/18/add-latest-rss-item-to-wordpress-post/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cuttingedgetutorials.com/2008/02/18/add-latest-rss-item-to-wordpress-post/</feedburner:origLink></item>
		<item>
		<title>Handy Web 2.0 Icons In Photoshop</title>
		<link>http://feedproxy.google.com/~r/CuttingEdgeTutorials/~3/Evki0OMmM-E/</link>
		<comments>http://www.cuttingedgetutorials.com/2008/02/11/handy-web-20-icons-in-photoshop/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 19:02:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Graphics]]></category>

		<category><![CDATA[Icons]]></category>

		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://psdtuts.com/interface-tutorials/handy-web-20-icons-in-photoshop/</guid>
		<description><![CDATA[<img src="http://psdtuts.s3.amazonaws.com/45_icons/icon_200.jpg"/>]]></description>
			<content:encoded><![CDATA[When we are working on a web design project, we quite often need icons to show commands like add, delete, or edit. With the Web 2.0 trend, the use of badges and subtle 3D has become very popular. In this tutorial I will show you how to create a really easy and very nice 3D effect to be used in either buttons and icons or elements that need some depth.<img src="http://feeds.feedburner.com/~r/CuttingEdgeTutorials/~4/Evki0OMmM-E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.cuttingedgetutorials.com/2008/02/11/handy-web-20-icons-in-photoshop/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.cuttingedgetutorials.com/2008/02/11/handy-web-20-icons-in-photoshop/</feedburner:origLink></item>
	</channel>
</rss>
