<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Forums - All Forums]]></title>
		<link>http://www.creativetoday.com/forum/</link>
		<description><![CDATA[Forums - http://www.creativetoday.com/forum]]></description>
		<pubDate>Thu, 09 Sep 2010 06:45:39 -0700</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[5 iPhone UI Design Tips]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=11</link>
			<pubDate>Sat, 06 Mar 2010 00:31:04 -0700</pubDate>
			<dc:creator>lilly</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=11</guid>
			<description><![CDATA[<br />
<ol type="1">
<li>If your application needs to load another webpage, please use an in-line browser. Auto-firing Safari breaks the flow of your app.</li>
<li>If your application has anything to do with displaying news or links you need to provide the capability to e-mail it to a friend. Be viral.</li>
<li>If your application is related to navigation or maps, use Google Maps. We don’t have Microsoft or Yahoo maps on our phones, so don’t break the flow. Please.</li>
<li>Follow Apple convention and use the bottom toolbar for tabbing through screens. Nobody wants to see your crappy customized button anyways. It breaks the flow.</li>
<li>If your application uses photos, allow me to choose from my iPhone photo library or snap a picture in-line. That is just common sense.<br />
</li></ol>
]]></description>
			<content:encoded><![CDATA[<br />
<ol type="1">
<li>If your application needs to load another webpage, please use an in-line browser. Auto-firing Safari breaks the flow of your app.</li>
<li>If your application has anything to do with displaying news or links you need to provide the capability to e-mail it to a friend. Be viral.</li>
<li>If your application is related to navigation or maps, use Google Maps. We don’t have Microsoft or Yahoo maps on our phones, so don’t break the flow. Please.</li>
<li>Follow Apple convention and use the bottom toolbar for tabbing through screens. Nobody wants to see your crappy customized button anyways. It breaks the flow.</li>
<li>If your application uses photos, allow me to choose from my iPhone photo library or snap a picture in-line. That is just common sense.<br />
</li></ol>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Create nice interlocking CSS buttons]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=10</link>
			<pubDate>Tue, 17 Feb 2009 05:52:18 -0700</pubDate>
			<dc:creator>egogmail</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=10</guid>
			<description><![CDATA[Create nice interlocking CSS buttons.<br />
<br />
Download related images: <a href="http://www.creativetoday.com/download/image.zip" target="_blank">http://www.creativetoday.com/download/image.zip</a><br />
<br />
<span style="font-weight: bold;">CSS:</span><span style="text-decoration: underline;"><br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>#Tabs{<br />
&nbsp;&nbsp;&nbsp;&nbsp;font-family: Verdana, Arial, Helvetica, sans-serif;<br />
&nbsp;&nbsp;&nbsp;&nbsp;list-style: none;<br />
&nbsp;&nbsp;&nbsp;&nbsp;font-weight: bold;<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin: 0 auto 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding: 5px 13px 6px 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;float: left;<br />
&nbsp;&nbsp;&nbsp;&nbsp;font-size: 85%;<br />
}<br />
<br />
#Tabs li{<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;float: left;<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabTL.png) top left repeat-x;<br />
}<br />
<br />
#Tabs a{<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabTR.png) top right no-repeat;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding: 5px 30px 6px 8px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;float: left;<br />
&nbsp;&nbsp;&nbsp;&nbsp;color: #fff;<br />
&nbsp;&nbsp;&nbsp;&nbsp;text-align: center;<br />
&nbsp;&nbsp;&nbsp;&nbsp;text-decoration:none;<br />
}<br />
<br />
#Tabs li.Active{<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabATL.png) top left repeat-x;<br />
}<br />
<br />
#Tabs li.Active a{<br />
&nbsp;&nbsp;&nbsp;&nbsp;color: #005C7D;<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabATR.png) top right no-repeat;<br />
&nbsp;&nbsp;&nbsp;&nbsp;text-decoration:none;<br />
}<br />
#Tabs li.First{<br />
&nbsp;&nbsp;&nbsp;&nbsp;border-left: 1px solid;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding-left: 8px;<br />
}<br />
#Tabs li.Last a{<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabTRLast.png) top right no-repeat;<br />
}<br />
#Tabs li.BeforeActive a{<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabBeforeATR.png) top right no-repeat;<br />
}<br />
#Tabs li.ActiveLast a{<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabATRLast.png) top right no-repeat;<br />
}</code></div></div>
<br />
<br />
<span style="font-weight: bold;">HTML</span></span><br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;ul id="Tabs"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class="First Active"&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class=""&gt;&lt;a href="#.html"&gt;About&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class="Last"&gt;&lt;a href="#.html"&gt;Contact&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;</code></div></div>
<br />
<img src="http://www.creativetoday.com/download/image.zip" border="0" alt="[Image: image.zip&#93;" /><br />
<br />
Goodluck...<br />
<br />
EGO]]></description>
			<content:encoded><![CDATA[Create nice interlocking CSS buttons.<br />
<br />
Download related images: <a href="http://www.creativetoday.com/download/image.zip" target="_blank">http://www.creativetoday.com/download/image.zip</a><br />
<br />
<span style="font-weight: bold;">CSS:</span><span style="text-decoration: underline;"><br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>#Tabs{<br />
&nbsp;&nbsp;&nbsp;&nbsp;font-family: Verdana, Arial, Helvetica, sans-serif;<br />
&nbsp;&nbsp;&nbsp;&nbsp;list-style: none;<br />
&nbsp;&nbsp;&nbsp;&nbsp;font-weight: bold;<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin: 0 auto 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding: 5px 13px 6px 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;float: left;<br />
&nbsp;&nbsp;&nbsp;&nbsp;font-size: 85%;<br />
}<br />
<br />
#Tabs li{<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;margin: 0;<br />
&nbsp;&nbsp;&nbsp;&nbsp;float: left;<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabTL.png) top left repeat-x;<br />
}<br />
<br />
#Tabs a{<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabTR.png) top right no-repeat;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding: 5px 30px 6px 8px;<br />
&nbsp;&nbsp;&nbsp;&nbsp;float: left;<br />
&nbsp;&nbsp;&nbsp;&nbsp;color: #fff;<br />
&nbsp;&nbsp;&nbsp;&nbsp;text-align: center;<br />
&nbsp;&nbsp;&nbsp;&nbsp;text-decoration:none;<br />
}<br />
<br />
#Tabs li.Active{<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabATL.png) top left repeat-x;<br />
}<br />
<br />
#Tabs li.Active a{<br />
&nbsp;&nbsp;&nbsp;&nbsp;color: #005C7D;<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabATR.png) top right no-repeat;<br />
&nbsp;&nbsp;&nbsp;&nbsp;text-decoration:none;<br />
}<br />
#Tabs li.First{<br />
&nbsp;&nbsp;&nbsp;&nbsp;border-left: 1px solid;<br />
&nbsp;&nbsp;&nbsp;&nbsp;padding-left: 8px;<br />
}<br />
#Tabs li.Last a{<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabTRLast.png) top right no-repeat;<br />
}<br />
#Tabs li.BeforeActive a{<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabBeforeATR.png) top right no-repeat;<br />
}<br />
#Tabs li.ActiveLast a{<br />
&nbsp;&nbsp;&nbsp;&nbsp;background: url(TabATRLast.png) top right no-repeat;<br />
}</code></div></div>
<br />
<br />
<span style="font-weight: bold;">HTML</span></span><br />
<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>&lt;ul id="Tabs"&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class="First Active"&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class=""&gt;&lt;a href="#.html"&gt;About&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;li class="Last"&gt;&lt;a href="#.html"&gt;Contact&lt;/a&gt;&lt;/li&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/ul&gt;</code></div></div>
<br />
<img src="http://www.creativetoday.com/download/image.zip" border="0" alt="[Image: image.zip]" /><br />
<br />
Goodluck...<br />
<br />
EGO]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Action Script Course]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=9</link>
			<pubDate>Wed, 14 Jan 2009 07:14:20 -0700</pubDate>
			<dc:creator>diyakumar</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=9</guid>
			<description><![CDATA[Hi All...<br />
<br />
Do anyone know about any institute in bangalore, they teach action script. Please let me know soon as early.<br />
<br />
Thanks]]></description>
			<content:encoded><![CDATA[Hi All...<br />
<br />
Do anyone know about any institute in bangalore, they teach action script. Please let me know soon as early.<br />
<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[User Interface template]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=8</link>
			<pubDate>Wed, 14 Jan 2009 07:01:32 -0700</pubDate>
			<dc:creator>egogmail</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=8</guid>
			<description><![CDATA[User Interface (UI) templates control the look and feel of a Web page. UI templates can be applied to either pages or database portlets. By applying a template, you can automatically specify a page title, a title background, links to home and help pages, and background colors and images.<br />
<br />
UI templates are good for standardizing the overall look and feel of many pages, or for standardizing groups of database portlets in a provider . For example, you can design a UI template for a provider that includes the company logo in the heading, the name of the company in the title, and a common background image. By ensuring every database portlet in the provider uses the same UI template, you impose a standard appearance.]]></description>
			<content:encoded><![CDATA[User Interface (UI) templates control the look and feel of a Web page. UI templates can be applied to either pages or database portlets. By applying a template, you can automatically specify a page title, a title background, links to home and help pages, and background colors and images.<br />
<br />
UI templates are good for standardizing the overall look and feel of many pages, or for standardizing groups of database portlets in a provider . For example, you can design a UI template for a provider that includes the company logo in the heading, the name of the company in the title, and a common background image. By ensuring every database portlet in the provider uses the same UI template, you impose a standard appearance.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[10 most common misconceptions about UX design]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=7</link>
			<pubDate>Mon, 12 Jan 2009 22:55:30 -0700</pubDate>
			<dc:creator>egogmail</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=7</guid>
			<description><![CDATA[Whitney Hess, an independent user experience designer, writer and consultant, asked some of the most influential and widely respected [USA&#93; practitioners in UX (including Steve Baty, Mario Bourque, Dan Brown, Liz Danzico, Bill DeRouchey, Will Evans, Chris Fahey, Kaleem Khan, Livia Labate, Erin Malone, David Malouf, Peter Merholz, Josh Porter, Louis Rosenfeld, Dan Saffer, Jared Spool, and Russ Unger) what they consider to be the biggest misperceptions of what we do. <br />
<br />
<span style="font-weight: bold;">User experience design is NOT…</span><br />
1. …user interface design<br />
2. …a step in the process<br />
3. …about technology<br />
4. …just about usability<br />
5. …just about the user<br />
6. …expensive<br />
7. …easy<br />
8. …the role of one person or department<br />
9. …a single discipline<br />
10. …a choice<br />
<br />
<span style="text-decoration: underline;"><span style="font-weight: bold;"><a href="http://mashable.com/2009/01/09/user-experience-design" target="_blank">Read full story</a></span></span>]]></description>
			<content:encoded><![CDATA[Whitney Hess, an independent user experience designer, writer and consultant, asked some of the most influential and widely respected [USA] practitioners in UX (including Steve Baty, Mario Bourque, Dan Brown, Liz Danzico, Bill DeRouchey, Will Evans, Chris Fahey, Kaleem Khan, Livia Labate, Erin Malone, David Malouf, Peter Merholz, Josh Porter, Louis Rosenfeld, Dan Saffer, Jared Spool, and Russ Unger) what they consider to be the biggest misperceptions of what we do. <br />
<br />
<span style="font-weight: bold;">User experience design is NOT…</span><br />
1. …user interface design<br />
2. …a step in the process<br />
3. …about technology<br />
4. …just about usability<br />
5. …just about the user<br />
6. …expensive<br />
7. …easy<br />
8. …the role of one person or department<br />
9. …a single discipline<br />
10. …a choice<br />
<br />
<span style="text-decoration: underline;"><span style="font-weight: bold;"><a href="http://mashable.com/2009/01/09/user-experience-design" target="_blank">Read full story</a></span></span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[UI Design Some thoughts]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=6</link>
			<pubDate>Thu, 08 Jan 2009 03:17:44 -0700</pubDate>
			<dc:creator>egogmail</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=6</guid>
			<description><![CDATA[Good and Simple UI design improves the user experience...that means more business...!<br />
<br />
User Interactive Design is the discipline of defining the behavior of products and systems that a user can interact with.<br />
<br />
While doing a UI design we have to understand how this product or service is going to work?, who is going to use?, what are the benefit the user will get?...(User Research) etc....<br />
<br />
Once we get a clear idea about the product... we have to sketch this and also document each points along with UI Architecture. Also always chose the color and images or icons (If needed) appropriately. While using the color you have to be very careful about the tone of color... it should be mild and soft... (Because some products will be running on a daily basis from morning to evening so... if it bright and sharp it will heart the eyes...) and also follow that companies brand standards etc...<br />
<br />
The other thing we have to take care is the laying of the content. It should be simple and straight... minimize the text and use simple and straight words. And also you have to use simple html friendly fonts.<br />
<br />
These are the main factors one should take care before starting a UI work.<br />
<br />
You can check Mr. Donald Norman's influential book The Design of Everyday Things. Academic research in Human Computer Interaction (HCI).<br />
<br />
<br />
<span style="font-weight: bold;">6 importent points to take care: </span><br />
<br />
<ol type="1">
<li>Design research</li>
<li>Research analysis and concept generation</li>
<li>Alternative design and evaluation</li>
<li>Prototyping and usability testing</li>
<li>Implementation</li>
<li>System testing<br />
</li></ol>
<br />
Thanks<br />
ego]]></description>
			<content:encoded><![CDATA[Good and Simple UI design improves the user experience...that means more business...!<br />
<br />
User Interactive Design is the discipline of defining the behavior of products and systems that a user can interact with.<br />
<br />
While doing a UI design we have to understand how this product or service is going to work?, who is going to use?, what are the benefit the user will get?...(User Research) etc....<br />
<br />
Once we get a clear idea about the product... we have to sketch this and also document each points along with UI Architecture. Also always chose the color and images or icons (If needed) appropriately. While using the color you have to be very careful about the tone of color... it should be mild and soft... (Because some products will be running on a daily basis from morning to evening so... if it bright and sharp it will heart the eyes...) and also follow that companies brand standards etc...<br />
<br />
The other thing we have to take care is the laying of the content. It should be simple and straight... minimize the text and use simple and straight words. And also you have to use simple html friendly fonts.<br />
<br />
These are the main factors one should take care before starting a UI work.<br />
<br />
You can check Mr. Donald Norman's influential book The Design of Everyday Things. Academic research in Human Computer Interaction (HCI).<br />
<br />
<br />
<span style="font-weight: bold;">6 importent points to take care: </span><br />
<br />
<ol type="1">
<li>Design research</li>
<li>Research analysis and concept generation</li>
<li>Alternative design and evaluation</li>
<li>Prototyping and usability testing</li>
<li>Implementation</li>
<li>System testing<br />
</li></ol>
<br />
Thanks<br />
ego]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Web 2.0 is not a design standard !]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=5</link>
			<pubDate>Thu, 08 Jan 2009 03:13:04 -0700</pubDate>
			<dc:creator>egogmail</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=5</guid>
			<description><![CDATA[I am being reached by lots of company and personals to design their website by following web 2.0 standards. But I am still confused... did any major design things are happened in this standard?<br />
<br />
I think there are no clear cut design changes in web 2.0 standards. Only we are defining new technology and there usage here. So in an experienced designer’s perspective I would like to tell that, there are no much design changes between the earlier and the web 2.0 standards. <br />
<br />
Innovative designs have happened all these years and the web and UI designs have gone through these kinds of changes. So the web 2.0 is just a term to define the latest technology and trends the people started using in the web. Yes, it’s a collaboration of the usability, technology and design. <br />
<br />
Design is always evolving and we can’t restrict these by giving the terms. Even in web or other areas, the people approach with design has changed according to social changes and approach. So web design, UI design will evolve so... we can’t define by giving some name or tag... as “Web 2.0 design”.]]></description>
			<content:encoded><![CDATA[I am being reached by lots of company and personals to design their website by following web 2.0 standards. But I am still confused... did any major design things are happened in this standard?<br />
<br />
I think there are no clear cut design changes in web 2.0 standards. Only we are defining new technology and there usage here. So in an experienced designer’s perspective I would like to tell that, there are no much design changes between the earlier and the web 2.0 standards. <br />
<br />
Innovative designs have happened all these years and the web and UI designs have gone through these kinds of changes. So the web 2.0 is just a term to define the latest technology and trends the people started using in the web. Yes, it’s a collaboration of the usability, technology and design. <br />
<br />
Design is always evolving and we can’t restrict these by giving the terms. Even in web or other areas, the people approach with design has changed according to social changes and approach. So web design, UI design will evolve so... we can’t define by giving some name or tag... as “Web 2.0 design”.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Few good links to learn Illustration]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=4</link>
			<pubDate>Sun, 04 Jan 2009 01:32:50 -0700</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=4</guid>
			<description><![CDATA[Hello Friends,<br />
<br />
Please check these links. Its really interesting<br />
<a href="http://www.ndesign-studio.com/blog/updates/learn-my-illustrator-and-photoshop-techniques/" target="_blank">http://www.ndesign-studio.com/blog/updat...echniques/</a><br />
<a href="http://www.illustratortips.com/" target="_blank">http://www.illustratortips.com/</a>]]></description>
			<content:encoded><![CDATA[Hello Friends,<br />
<br />
Please check these links. Its really interesting<br />
<a href="http://www.ndesign-studio.com/blog/updates/learn-my-illustrator-and-photoshop-techniques/" target="_blank">http://www.ndesign-studio.com/blog/updat...echniques/</a><br />
<a href="http://www.illustratortips.com/" target="_blank">http://www.illustratortips.com/</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PHP Mailing List Servers]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=3</link>
			<pubDate>Thu, 25 Dec 2008 22:57:09 -0700</pubDate>
			<dc:creator>ashmel</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=3</guid>
			<description><![CDATA[Hi,<br />
<br />
Can somebody suggest /advise on PHP Mailing List servers ? I have looked at PHPLists, Pommo and some others but not sure which one to go with..<br />
<br />
Preferably, on the LAMP (PHP) stack.<br />
<br />
Ashish]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
Can somebody suggest /advise on PHP Mailing List servers ? I have looked at PHPLists, Pommo and some others but not sure which one to go with..<br />
<br />
Preferably, on the LAMP (PHP) stack.<br />
<br />
Ashish]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Need help to create brocken wall effect]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=2</link>
			<pubDate>Thu, 25 Dec 2008 07:27:41 -0700</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=2</guid>
			<description><![CDATA[Hello,<br />
<br />
Need help to create brocken wall texture. If any one have any link or site that help us to create the texture, please help.<br />
<br />
Thanks]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
Need help to create brocken wall texture. If any one have any link or site that help us to create the texture, please help.<br />
<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Do any one know how to create cloud effect?]]></title>
			<link>http://www.creativetoday.com/forum/showthread.php?tid=1</link>
			<pubDate>Thu, 25 Dec 2008 01:32:54 -0700</pubDate>
			<dc:creator>sathishhc</dc:creator>
			<guid isPermaLink="false">http://www.creativetoday.com/forum/showthread.php?tid=1</guid>
			<description><![CDATA[Hi...<br />
<br />
Can any one help me to create cloud effect in photoshop?<br />
<br />
thanks<br />
Sathish]]></description>
			<content:encoded><![CDATA[Hi...<br />
<br />
Can any one help me to create cloud effect in photoshop?<br />
<br />
thanks<br />
Sathish]]></content:encoded>
		</item>
	</channel>
</rss>