<?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>Programming Blog &#187; mysql query</title>
	<atom:link href="http://www.neurosoftware.ro/programming-blog/tag/mysql-query/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.neurosoftware.ro/programming-blog</link>
	<description>Web development , php , ajax , symfony, framework, zend</description>
	<lastBuildDate>Thu, 18 Aug 2011 08:11:19 +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>An Updated WordPress Events List</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/an-updated-wordpress-events-list/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/an-updated-wordpress-events-list/#comments</comments>
		<pubDate>Wed, 09 Feb 2011 01:53:16 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[custom query]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[lt]]></category>
		<category><![CDATA[mysql query]]></category>
		<category><![CDATA[new year]]></category>
		<category><![CDATA[query posts]]></category>
		<category><![CDATA[Sidebar]]></category>
		<category><![CDATA[test posts]]></category>
		<category><![CDATA[wordpress blog]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/an-updated-wordpress-events-list/</guid>
		<description><![CDATA[Around this time last year, I wrote a post on how to create an Upcoming Events section on your WordPress blog. The events can be displayed as a list of posts, ordered by the date in which they occur (And events that come and go will automatically be taken off the list of course). As [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d11c8_events-list.jpg" alt="WordPress Events List" width="560" height="145" class="alignnone size-full wp-image-6393" /></p>
<p>Around this time last year, I <a href="http://www.problogdesign.com/wordpress/how-to-make-a-wordpress-events-list/">wrote a post</a> on how to create an <strong>Upcoming Events section</strong> on your WordPress blog.</p>
<p>The events can be displayed as a list of posts, <strong>ordered by the date</strong> in which they occur (And events that come and go will automatically be taken off the list of course).</p>
<p>As several of you found out this January though, that code had an issue in it that meant <strong>it stopped working with the new year</strong>. In this post, we&#8217;re going to fix that (Sorry it&#8217;s taken me to now to publish a tutorial with the solution!).</p>
<h2>How to Add Events</h2>
<p>The most important thing is that we <strong>won&#8217;t be making any changes to how events are added</strong>. WordPress 3.0 was released a few months after I wrote the original post, and its custom post types feature could be very useful for this, but the idea here is to fix the system for everyone already using it.</p>
<p>For that reason, we&#8217;ll keep adding events by:</p>
<ul>
<li>Adding posts to a <strong>category called Events</strong>.</li>
<li>Specifying the date of the event using a <strong>custom field called Date</strong>. The format of the date is: mm/dd/yy</li>
</ul>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/22e0e_date.png" alt="Date Entry" width="560" height="145" class="alignnone size-full wp-image-6391" /></p>
<p>To get started, go and and add a few test posts to your Events category now.</p>
<h2>Building Our MySQL Query</h2>
<p>Instead of a regular WordPress query_posts(), this time we&#8217;ll be building a MySQL query.</p>
<p>Start off by finding <strong>where in your template you want to insert your list</strong> (I&#8217;m adding it to the sidebar in this example). Begin by pasting in the following:</p>
<div>
<table>
<tr>
<td>
<pre>1
2
3
4
5
6
7
</pre>
</td>
<td>
<pre>&lt;ul&gt;
<span>&lt;?php</span>
<span>// Build a custom query to get posts from future dates.</span>
<span>$querystr</span> <span>=</span> <span>&quot;
    SELECT wposts.*
    FROM <span>$wpdb-&gt;posts</span> wposts, <span>$wpdb-&gt;postmeta</span> wpostmeta
    WHERE wposts.ID = wpostmeta.post_id</span></pre>
</td>
</tr>
</table>
</div>
<p>The code above starts our list, but then we move straight into making the query. The first line of the query (SELECT&#8230;) says that we want to return all of the data about each post <strong>from the wp_posts table</strong>. </p>
<p>The next two lines (FROM and WHERE) specify that <strong>we want to work with 2 tables</strong> in our query (With the WHERE telling MySQL how to match up corresponding rows).</p>
<p>Now we need to tell MySQL how to find the event posts. To do that, paste the following after what we just added (Although this is on multiple lines, the whole query is <strong>just one big PHP string for now</strong>).</p>
<div>
<table>
<tr>
<td>
<pre>1
2
3
4
5
</pre>
</td>
<td>
<pre>AND wpostmeta<span>.</span>meta_key <span>=</span> <span>'Time'</span>
AND STR_TO_DATE<span>&#040;</span>wpostmeta<span>.</span>meta_value<span>,</span><span>'%m/%d/%Y'</span><span>&#041;</span> <span>&gt;=</span> CURDATE<span>&#040;</span><span>&#041;</span>
&nbsp;
AND wposts<span>.</span>post_status <span>=</span> <span>'publish'</span>
AND wposts<span>.</span>post_type <span>=</span> <span>'post'</span></pre>
</td>
</tr>
</table>
</div>
<p>The first line specifies that we&#8217;re only interested in <strong>posts that have the &#8220;Date&#8221; custom field</strong>. In the second line, we&#8217;re using 2 MySQL functions to ask MySQL to work out which events are upcoming (not yet passed).</p>
<p>The <a href="http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_str-to-date">STR_TO_DATE</a> function takes the date in the format we entered (mm/dd/yy) and converts it to a datetime value. The <a href="http://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_curdate">CURDATE()</a> function enters the current date as a datetime value as well, so we can <strong>compare the two properly</strong> (This is where the previous method failed).</p>
<p>Now we&#8217;ll finish up our query by specifying <strong>how many events we want to list</strong> and we&#8217;ll use the STR_TO_DATE function again to tell MySQL to order them by the soonest first.</p>
<div>
<table>
<tr>
<td>
<pre>1
2
3
</pre>
</td>
<td>
<pre>ORDER BY STR_TO_DATE<span>&#040;</span>wpostmeta<span>.</span>meta_value<span>,</span><span>'%m/%d/%Y'</span><span>&#041;</span> ASC
LIMIT <span>5</span>
<span>&quot;;</span></pre>
</td>
</tr>
</table>
</div>
<h2>Displaying Our Events</h2>
<p>The query above will find exactly what we need, so now we need to display it.</p>
<p>The first step is of course to <strong>run the query</strong> and save the results.</p>
<div>
<table>
<tr>
<td>
<pre>1
</pre>
</td>
<td>
<pre><span>$events</span> <span>=</span> <span>$wpdb</span><span>-&gt;</span><span>get_results</span><span>&#040;</span><span>$querystr</span><span>,</span> OBJECT<span>&#041;</span><span>;</span></pre>
</td>
</tr>
</table>
</div>
<p>With the results in the $events variable, we&#8217;ll now set up a loop to run through each one and display it in the list.</p>
<div>
<table>
<tr>
<td>
<pre>1
2
3
4
5
6
7
8
9
10
11
</pre>
</td>
<td>
<pre> if ($events):
 	foreach ($events as $event):
 		setup_postdata($event); ?&gt;
			&lt;li&gt;
			&lt;a href=&quot;<span>&lt;?php</span> the_permalink<span>&#040;</span><span>&#041;</span><span>;</span> <span>?&gt;</span>&quot;&gt;<span>&lt;?php</span> the_title<span>&#040;</span><span>&#041;</span><span>;</span> <span>?&gt;</span>&lt;/a&gt;
			&lt;/li&gt;
	<span>&lt;?php</span> <span>endforeach</span><span>;</span>
<span>else</span> <span>:</span> <span>?&gt;</span>
	&lt;li&gt;Sorry, no events coming up.&lt;/li&gt;
<span>&lt;?php</span> <span>endif</span><span>;</span> <span>?&gt;</span>
&lt;/ul&gt;</pre>
</td>
</tr>
</table>
</div>
<p>The first line checks to see <strong>if we found any results</strong>. If we did, we then move into a foreach loop that will go through each of the posts individually.</p>
<p>For each one, we use WordPress&#8217; <strong>setup_postdata() function</strong> to take the data in our resulting post objects and set up the functions we&#8217;re used to working with (the_title(); the_permalink(); etc.).</p>
<p>The last few lines just close up our loop, if-statement, and list. And of course, we&#8217;ll <strong>show a message</strong> if there aren&#8217;t any events coming up.</p>
<p>And that&#8217;s us set! There are plenty of enhancements you could make to this, e.g. <strong>custom post types</strong> for events, a <strong>meta box for entering the date</strong>, or even a <strong>traditional calendar layout</strong> (Though for a small area like a sidebar, I&#8217;d stick with the list view).</p>
<p>If you use this code and would like to see how to do any of those, <strong>let me know in the comments</strong>!</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/22e0e_nW5mF0TSmaI" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/tutorial/an-updated-wordpress-events-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Quick Tip: Working with MySQL and SUM</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tip-working-with-mysql-and-sum/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tip-working-with-mysql-and-sum/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 13:27:39 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[mysql query]]></category>
		<category><![CDATA[performance improvement]]></category>
		<category><![CDATA[queries]]></category>
		<category><![CDATA[video tutorials]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tip-working-with-mysql-and-sum/</guid>
		<description><![CDATA[In today&#8217;s quick tip screencast, we&#8217;re going to learn a MySQL query trick. You might be already familiar with the SUM() and IF() functions. We will be combining them to come up with some useful queries. This can reduce the number of queries you need to run for fetching certain types of summary data, and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://feedads.g.doubleclick.net/~a/psH1mhwU0OgHuMkOK7Rwxu25Dq8/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/55c86_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/psH1mhwU0OgHuMkOK7Rwxu25Dq8/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/55c86_di" border="0"></img></a></p>
<p>
In today&#8217;s <a href="http://net.tutsplus.com/tag/tips/">quick tip</a> screencast, we&#8217;re going to learn a MySQL query trick. You might be already familiar with the SUM() and IF() functions. We will be combining them to come up with some useful queries. This can reduce the number of queries you need to run for fetching certain types of summary data, and also provide a performance improvement.
</p>
<p><span></span></p>
<div>
<div>Premium Members: <a href="http://tutsplus.com/plus-content/nettuts/bonus-nettuts/working-with-mysql-and-sum-video-download/">Download this Video</a> ( Must be <a href="http://tutsplus.com/amember/member.php">logged in</a>) </div>
<div><a href="http://www.youtube.com/user/nettutsplus">Subscribe to our YouTube page to watch all of the video tutorials!</a></div>
</div>
<div>
<a href="http://feeds.feedburner.com/~ff/nettuts?a=MqAtUcYyt4Y:JXsNg_DB6FI:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/41c16_nettuts?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=MqAtUcYyt4Y:JXsNg_DB6FI:F7zBnMyn0Lo"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/41c16_nettuts?i=MqAtUcYyt4Y:JXsNg_DB6FI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=MqAtUcYyt4Y:JXsNg_DB6FI:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/41c16_nettuts?i=MqAtUcYyt4Y:JXsNg_DB6FI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=MqAtUcYyt4Y:JXsNg_DB6FI:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/41c16_nettuts?i=MqAtUcYyt4Y:JXsNg_DB6FI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/nettuts?a=MqAtUcYyt4Y:JXsNg_DB6FI:TzevzKxY174"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/578c2_nettuts?d=TzevzKxY174" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/578c2_MqAtUcYyt4Y" height="1" width="1" /><br />
<a href="http://feedproxy.google.com/nettuts">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/quick-tip-working-with-mysql-and-sum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build HTML Tables From MySQL Tables with&#160;PHP</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/build-html-tables-from-mysql-tables-withphp/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/build-html-tables-from-mysql-tables-withphp/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 21:45:13 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[david walsh]]></category>
		<category><![CDATA[db connection]]></category>
		<category><![CDATA[gt value]]></category>
		<category><![CDATA[html tables]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[mysql num rows]]></category>
		<category><![CDATA[mysql query]]></category>
		<category><![CDATA[mysql tables]]></category>
		<category><![CDATA[result table]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/build-html-tables-from-mysql-tables-withphp/</guid>
		<description><![CDATA[I was recently completing a project which required that I build a series of HTML tables which would represent all of the tables within a MySQL database.  I didn&#8217;t have anything created but after a few minutes I had exactly what I needed. Hopefully this helps you out! View Demo The CSS table.db-table { border-right:1px [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently completing a project which required that I build a series of HTML tables which would represent all of the tables within a MySQL database.  I didn&#8217;t have anything created but after a few minutes I had exactly what I needed. Hopefully this helps you out!</p>
<p><a href="http://davidwalsh.name/dw-content/build-mysql-tables.php"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/13abe_mysql-db-tables.jpg" alt="" class="image" /></a></p>
<div><a href="http://davidwalsh.name/dw-content/build-mysql-tables.php">View Demo</a>
<div></div>
</div>
<h2>The CSS</h2>
<pre>
table.db-table 		{ border-right:1px solid #ccc; border-bottom:1px solid #ccc; }
table.db-table th	{ background:#eee; padding:5px; border-left:1px solid #ccc; border-top:1px solid #ccc; }
table.db-table td	{ padding:5px; border-left:1px solid #ccc; border-top:1px solid #ccc; }
</pre>
<p>The CSS I&#8217;m styling the table with is as basic as it gets &#8212; style as you wish!</p>
<h2>The PHP / MySQL</h2>
<pre>
/* connect to the db */
$connection = mysql_connect('localhost','username','password');
mysql_select_db('my_db',$connection);

/* show tables */
$result = mysql_query('SHOW TABLES',$connection) or die('cannot show tables');
while($tableName = mysql_fetch_row($result)) {

	$table = $tableName[0];

	echo '
<h3>',$table,'</h3>

';
	$result2 = mysql_query('SHOW COLUMNS FROM '.$table) or die('cannot show columns from '.$table);
	if(mysql_num_rows($result2)) {
		echo '
<table cellpadding="0" cellspacing="0">';
		echo '
<tr>
<th>Field</th>
<th>Type</th>
<th>Null</th>
<th>Key</th>
<th>Default
<th>Extra</th>
</tr>

';
		while($row2 = mysql_fetch_row($result2)) {
			echo '
<tr>';
			foreach($row2 as $key=&gt;$value) {
				echo '
<td>',$value,'</td>

';
			}
			echo '</tr>

';
		}
		echo '</table>

';
	}
}
</pre>
<p>The first step in the process is accessing all of the tables within the database.  Once all tables have been fetched, the next step is to loops through the array of tables we receive and, for each table, build a new HTML table with column information.</p>
<div><a href="http://davidwalsh.name/dw-content/build-mysql-tables.php">View Demo</a>
<div></div>
</div>
<p>Nothing groundbreaking but surely has use.  I&#8217;ve also written a blog post about backing up your MySQL database with PHP titled <a href="http://davidwalsh.name/backup-mysql-database-php">Backup Your MySQL Database Using PHP</a>;  check that out if you&#8217;d prefer to backup your databse information in SQL format!</p>
<p><strong>Follow Me!</strong> <a href="http://twitter.com/davidwalshblog">Twitter</a> | <a href="http://www.facebook.com/#!/pages/David-Walsh-Blog/186644584869">Facebook</a> | <a href="http://www.linkedin.com/in/davidjameswalsh">LinkedIn</a> | <a href="http://mootools.net/forge/profile/davidwalsh">MooTools Forge.</a></p>
<p>Full David Walsh Blog Post: <a href="http://davidwalsh.name/html-mysql-php">Build HTML Tables From MySQL Tables with&nbsp;PHP</a></p>
<p>Related posts:
<ol>
<li><a href="http://davidwalsh.name/php-mysql-database-optimization-function" rel="bookmark" title="Permanent Link: PHP / MySQL Database Optimization Function">PHP / MySQL Database Optimization&nbsp;Function</a></li>
<li><a href="http://davidwalsh.name/backup-mysql-database-php" rel="bookmark" title="Permanent Link: Backup Your MySQL Database Using PHP">Backup Your MySQL Database Using&nbsp;PHP</a></li>
<li><a href="http://davidwalsh.name/php-calendar" rel="bookmark" title="Permanent Link: Build a Calendar Using PHP, XHTML, and CSS">Build a Calendar Using PHP, XHTML, and&nbsp;CSS</a></li>
<li><a href="http://davidwalsh.name/php-microsoft-sql-server-mssql-iis-connect-query-odbc" rel="bookmark" title="Permanent Link: PHP, Microsoft SQL Server (MSSQL), and IIS:  Connect and Query with ODBC">PHP, Microsoft SQL Server (MSSQL), and IIS:  Connect and Query with&nbsp;ODBC</a></li>
<li><a href="http://davidwalsh.name/mootools-zebra-tables-plugin" rel="bookmark" title="Permanent Link: MooTools Zebra Tables Plugin">MooTools Zebra Tables&nbsp;Plugin</a></li>
</ol>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/13abe_vDBe3nK5VHw" height="1" width="1" /><br />
<a href="http://davidwalsh.name/feed/atom">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/build-html-tables-from-mysql-tables-withphp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Designious Vector Mega Pack Giveaway</title>
		<link>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/designious-vector-mega-pack-giveaway/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/designious-vector-mega-pack-giveaway/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 22:30:37 +0000</pubDate>
		<dc:creator>Facebook-Web-Design</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[art work]]></category>
		<category><![CDATA[brushes]]></category>
		<category><![CDATA[design elements]]></category>
		<category><![CDATA[followup post]]></category>
		<category><![CDATA[grabs]]></category>
		<category><![CDATA[huge collection]]></category>
		<category><![CDATA[lucky readers]]></category>
		<category><![CDATA[mysql query]]></category>
		<category><![CDATA[vector art photoshop]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/designious-vector-mega-pack-giveaway/</guid>
		<description><![CDATA[About Designious Designious is a small design studio that specializes in creating amazing vector art and design elements for designers. They provide designers all over the world with stock vector art, photoshop brushes and fonts to help them create or improve their art work. What&#8217;s up for Grabs? 3 lucky readers will win their choice [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://feedads.g.doubleclick.net/~a/oubSOI6KPsfziAJJRv03-YrTgO8/0/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/6bcdb_di" border="0"></img></a><br />
<a href="http://feedads.g.doubleclick.net/~a/oubSOI6KPsfziAJJRv03-YrTgO8/1/da"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c174f_di" border="0"></img></a></p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/02cdb_designious-giveaway.jpg" alt="Designious Vector Mega Pack Giveaway" width="580" height="335" class="alignnone size-full wp-image-10304" /></p>
<h2>About Designious</h2>
<p><a href="http://www.designious.com">Designious</a> is a small design studio that specializes in creating amazing vector art and design elements for designers. They provide designers all over the world with stock vector art, photoshop brushes and fonts to help them create or improve their art work.</p>
<h2>What&#8217;s up for Grabs?</h2>
<p>3 lucky readers will win their choice of any <a href="http://www.designious.com/mega-packs">vector mega pack</a> from Designious. These packs are a huge collection of awesome designs that are incredible useful.</p>
<h2>Some Samples</h2>
<p>Here are some samples of what you can choose from.</p>
<p><a href="http://www.designious.com/mega-packs/vintage-mega-vector-pack-9"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e423d_vintage-crest-vectors.jpg" alt="Vintage mega pack 9" width="550" height="364" class="alignnone size-full wp-image-10298" /></a></p>
<p><a href="http://www.designious.com/mega-packs/floral-mega-vector-pack-6"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/53187_rozes-floral-mega-pack-6.jpg" alt="Floral mega pack 6" width="550" height="364" class="alignnone size-full wp-image-10301" /></a></p>
<h2>How to enter</h2>
<p>For a chance to win, signup to <a href="http://www.twitter.com/myinkblog">follow MyInkBlog</a> on Twitter, then drop me a comment below and be sure to include your twitter name. If you are already following MyInkBlog, awesome, just add a comment with your twitter name. The 3 winners will be chosen by a random mysql query. The deadline to enter is May 10th, 2010, after that point commenting on this post will be turned off. I will announce the winners in a followup post, so it’s a good idea to grab the <a href="http://feeds.feedburner.com/MyInkBlog">RSS feed</a> to find out if you win.</p>
<div>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/df259_YVd3P_pZSjw" height="1" width="1" /><br />
<a href="http://feeds2.feedburner.com/MyInkBlog">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/facebook-web-design/web-resources/designious-vector-mega-pack-giveaway/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Announcement: The Winners of Pixmac Photo Credits</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-the-winners-of-pixmac-photo-credits/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-the-winners-of-pixmac-photo-credits/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 11:45:08 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[Chief Editor]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[gube]]></category>
		<category><![CDATA[html css]]></category>
		<category><![CDATA[Jacob Gube]]></category>
		<category><![CDATA[microstock]]></category>
		<category><![CDATA[mysql query]]></category>
		<category><![CDATA[Pixmac]]></category>
		<category><![CDATA[revisions]]></category>
		<category><![CDATA[screen grab]]></category>
		<category><![CDATA[Sebastian
Michael  L.
Mary
Zach  S

Here]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-the-winners-of-pixmac-photo-credits/</guid>
		<description><![CDATA[Last week, Pixmac, a microstock photo site (read more about them on the microstock:insider blog) teamed up with Six Revisions to give five readers 20 credits to use on their site. Over 30 participants shared a photos they found on the Pixmac site that they thought to be representative of design or development. Today, we&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a34d7_14-01_pixmac_announcement_lead_image.jpg" width="550" height="250" alt="Announcement: The Winners of Pixmac Photo credits" /></p>
<p>Last week, <a href="http://www.pixmac.com/">Pixmac</a>, a  microstock photo site (read more about them on the <a href="http://microstockinsider.com/news/pixmac-now-reselling-dreamstime-images">microstock:insider</a> blog) teamed up with Six Revisions to give <a href="http://sixrevisions.com/contests/microstock-photo-credits-giveaway-win-20-credits-on-pixmac/">five  readers 20 credits to use on their site</a>. Over <a href="http://sixrevisions.com/contests/microstock-photo-credits-giveaway-win-20-credits-on-pixmac/#comments">30  participants</a> shared a photos they found on the Pixmac site that they  thought to be representative of design or development. Today, we&#8217;re happy to  announce the winners.</p>
<p><span></span></p>
<h3>The Winners</h3>
<p>The five winners of 20 credits on Pixmac are:</p>
<ul>
<li><a href="http://sixrevisions.com/contests/microstock-photo-credits-giveaway-win-20-credits-on-pixmac/#comment-50680"><strong>Anparasu</strong></a></li>
<li><a href="http://sixrevisions.com/contests/microstock-photo-credits-giveaway-win-20-credits-on-pixmac/#comment-50459"><strong>Sebastian</strong></a></li>
<li><a href="http://sixrevisions.com/contests/microstock-photo-credits-giveaway-win-20-credits-on-pixmac/#comment-50469"><strong>Michael  L.</strong></a></li>
<li><a href="http://sixrevisions.com/contests/microstock-photo-credits-giveaway-win-20-credits-on-pixmac/#comment-51000"><strong>Mary</strong></a></li>
<li><a href="http://sixrevisions.com/contests/microstock-photo-credits-giveaway-win-20-credits-on-pixmac/#comment-50495"><strong>Zach  S</strong></a></li>
</ul>
<p>Here is a screen grab of the MySQL query used to select the  winners at random.</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/79edb_14-02_pixmac_mysql_query.png" width="550" height="275" alt="The Winners of Pixmac Photo credits - mysql query." /></p>
<p><strong>Congratulations to  the winners</strong>! The winners should already have received an email regarding  how to obtain their Pixmac credits.</p>
<h3>Thank you!</h3>
<p>Thank you <a href="http://www.pixmac.com/">Pixmac</a> for  sponsoring a wonderful and fun giveaway on Six Revisions, and thank you to the  participants of the giveaway.</p>
<h3>About the Author</h3>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a2708_jacob_gube_small.jpg" alt="" width="80" height="80" /><span><strong>Jacob Gube</strong> is the Founder and Chief Editor of <strong><a href="http://sixrevisions.com/">Six Revisions</a></strong>. He&#8217;s also a web developer/designer who specializes in front-end development (JavaScript, HTML, CSS) and PHP development. If you&#8217;d like to connect with him, head on over to the <a href="http://sixrevisions.com/contact/">contact page</a> and follow him on Twitter: <strong>@<a href="http://twitter.com/sixrevisions">sixrevisions</a></strong>.</span></p>
<div>
<a href="http://feeds.feedburner.com/~ff/SixRevisions?a=Hb9j1MNQW0s:f8ZEYfMyEoE:V_sGLiPBpWU"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a2708_SixRevisions?i=Hb9j1MNQW0s:f8ZEYfMyEoE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=Hb9j1MNQW0s:f8ZEYfMyEoE:yIl2AUoC8zA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a2708_SixRevisions?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=Hb9j1MNQW0s:f8ZEYfMyEoE:qj6IDK7rITs"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a2708_SixRevisions?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=Hb9j1MNQW0s:f8ZEYfMyEoE:gIN9vFwOqvQ"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a2708_SixRevisions?i=Hb9j1MNQW0s:f8ZEYfMyEoE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/SixRevisions?a=Hb9j1MNQW0s:f8ZEYfMyEoE:7Q72WNTAKBA"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/a2708_SixRevisions?d=7Q72WNTAKBA" border="0"></img></a>
</div>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e0901_Hb9j1MNQW0s" height="1" width="1" /><br />
<a href="http://feeds2.feedburner.com/SixRevisions">Go to Source</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-the-winners-of-pixmac-photo-credits/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Announcement: Warm Forest Aspen Flash Template Winners</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-warm-forest-aspen-flash-template-winners/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-warm-forest-aspen-flash-template-winners/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 02:26:48 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[best flash]]></category>
		<category><![CDATA[flash portfolio]]></category>
		<category><![CDATA[flash template]]></category>
		<category><![CDATA[flash templates]]></category>
		<category><![CDATA[high quality]]></category>
		<category><![CDATA[lucky winners]]></category>
		<category><![CDATA[mysql query]]></category>
		<category><![CDATA[portfolio website]]></category>
		<category><![CDATA[quality flash]]></category>
		<category><![CDATA[selection process]]></category>
		<category><![CDATA[survey contest]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-warm-forest-aspen-flash-template-winners/</guid>
		<description><![CDATA[Last week, Warm Forest and Six Revisions asked you what you thought the best Flash portfolio website was. To make things fun, Warm Forest kindly donated two Aspen Flash templates (worth $89.00 dollars each) to give away to a couple of randomly selected commenters. Today, we are happy to announce the two lucky winners! The [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, <a href="http://www.warmforestflash.com/" title="Flash Templates, Flash Portfolios + Source Code | Warm Forest">Warm  Forest</a> and Six Revisions asked you what you thought the best Flash portfolio  website was. To make things fun, Warm Forest kindly donated two <a href="http://www.warmforestflash.com/products/aspen/">Aspen Flash templates</a> (worth $89.00 dollars each) to give away to a couple of randomly selected commenters.</p>
<p><a href="http://www.warmforestflash.com/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/2fc87_30-01_warm_forest_leading.jpg" width="550" height="250" alt="Warm Forest" /></a></p>
<p><span></span></p>
<p>Today, we are happy to announce the two lucky winners!</p>
<h3>The winners are&#8230;</h3>
<ul>
<li><a href="http://sixrevisions.com/contests/best-flash-portfolio-site/#comment-34287">chris</a></li>
<li><a href="http://sixrevisions.com/contests/best-flash-portfolio-site/#comment-34322">grishy</a></li>
</ul>
<p>Congratulations to the winners! We will contact you soon  regarding details on how to claim your wonderful prize.</p>
<h3>The screenshot</h3>
<p>In case you were wondering how the selection process was  administered, you can check out the screenshot below to see the MySQL query  that was used to pick out the contestants. The contact information of the  contestants (email address) was removed to protect their privacy.</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/e3c1f_30-02_warm_forest_results.png" width="550" height="250" alt="Warm Forest mySQL query." /></p>
<h3>Thank you <a href="http://www.warmforestflash.com/" title="Flash Templates, Flash Portfolios + Source Code | Warm Forest">Warm  Forest</a> and participants</h3>
<p>To <a href="http://www.warmforestflash.com/">Warm Forest</a>,  a provider of <a href="http://www.warmforestflash.com/products/">high-quality  Flash templates</a>: I would like to extend my sincerest gratitude for  sponsoring this survey/contest.</p>
<p>Thank you to the people who kindly participated and put in  their vote on the best Flash portfolio &#8211; I hope to summarize the votes into  another post coming soon.</p>
<h3>Stay tuned!</h3>
<p>Did you miss out on winning? Well, there are more contests  to come, so subscribe to the <a href="http://feeds2.feedburner.com/SixRevisions">RSS  feed</a> to make sure you don’t miss any of them!</p>
<h3>Related content</h3>
<ul>
<li><a href="http://sixrevisions.com/contests/best-flash-portfolio-site/">Best Flash  Portfolio Site?</a></li>
</ul>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/c8533_Jr35JAdd9AA" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-warm-forest-aspen-flash-template-winners/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Best Flash Portfolio Site?</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/best-flash-portfolio-site/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/best-flash-portfolio-site/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 12:19:28 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[best flash]]></category>
		<category><![CDATA[best practices]]></category>
		<category><![CDATA[contest ends]]></category>
		<category><![CDATA[flash portfolio]]></category>
		<category><![CDATA[flash site]]></category>
		<category><![CDATA[flash template]]></category>
		<category><![CDATA[memorable experience]]></category>
		<category><![CDATA[mysql query]]></category>
		<category><![CDATA[quality flash]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[valid email address]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/best-flash-portfolio-site/</guid>
		<description><![CDATA[Flash portfolio sites can give visitors an unrivaled and memorable experience, as well as show off the designer&#8217;s capabilities in creating Flash-based sites. Warm Forest, a provider of high-quality Flash templates made specifically for designers, and Six Revisions have teamed up to give a couple of winners a chance to win an Aspen Flash template [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Flash portfolio sites</strong> can give visitors an unrivaled and memorable experience, as well as show off  the designer&#8217;s capabilities in creating Flash-based sites.</p>
<p><a href="http://www.warmforestflash.com/" target="_blank"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/8164e_16-01_warm_forest_leading_image.jpg" width="550" height="250" alt="Best Flash Portfolio Site? leading image." /></a></p>
<p><span></span></p>
<p><strong><a href="http://www.warmforestflash.com/">Warm Forest</a></strong>, a provider of <a href="http://www.warmforestflash.com/products/">high-quality Flash templates</a> made specifically for designers, and Six Revisions have teamed up to give a <em>couple of winners</em> a chance to win an <a href="http://www.warmforestflash.com/products/aspen/">Aspen Flash template</a> worth <strong>$89 each</strong>. By stating what you  think the best Flash portfolio site is &#8211; you automatically receive the chance  to be one of the winners of the Flash template.</p>
<h3>How to participate</h3>
<p>To vote, simply leave a comment below with the <strong>URL of the  best Flash portfolio site</strong> in the following format:</p>
<pre>vote: http://websiteurl.com</pre>
<h3>The details</h3>
<ul type="disc">
<li>You must leave a <strong>valid       email address</strong> when filling up the comment form so that we can       contact you if you&#8217;ve won.</li>
<li>You can only cast your vote       once.</li>
<li>Contest ends on <strong>April       27, 2009</strong>, after which comments will be disabled.</li>
<li>Winners will be selected at       random using a MySQL query similar to <a href="http://sixrevisions.com/contests/flasheff-contest-results/">other       contests</a>.</li>
<li>Format your vote as specified       or you risk the chance of not being able to participate.</li>
</ul>
<h3>About Warm Forest</h3>
<p><a href="http://www.warmforestflash.com/">Warm Forest</a> offers  super-customizable <a href="http://www.warmforestflash.com/products/">Flash  templates</a> made specifically for designers. Easily customize all aspects of  the site &#8211; from adding your own logo to changing all the colors &#8211; <em>without  knowing any ActionScript</em> or even owning Flash. All sites are designed with a  strong focus on typography, grids and usability. The ActionScript source code  is included so designers with an interest in Flash can learn how a  professional, best practices following Flash site is put together.</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/667da_9fU9JVTJ9BM" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/best-flash-portfolio-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcement: SnobbySlice PSD to XHTML Winners</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-snobbyslice-psd-to-xhtml-winners/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-snobbyslice-psd-to-xhtml-winners/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 20:23:47 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[best web design]]></category>
		<category><![CDATA[contest sponsor]]></category>
		<category><![CDATA[html css]]></category>
		<category><![CDATA[mysql query]]></category>
		<category><![CDATA[web design gallery]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-snobbyslice-psd-to-xhtml-winners/</guid>
		<description><![CDATA[Last week, SnobbySlice and Six Revisions asked you what you thought the best web design gallery was. There were over close to 200 participants, and today, we’re glad to announce the winners of the two SnobbySlice PSD to XHTML service worth $498 each. The winners 1. bobby comment #33119 2. Manuel comment #32989 You should [...]]]></description>
			<content:encoded><![CDATA[<p>Last week, <a href="http://snobbyslice.com/"><strong>SnobbySlice</strong></a> and Six Revisions asked you what you thought the <a href="http://sixrevisions.com/contests/best-web-design-gallery/">best web  design gallery</a> was. There were over close to <a href="http://sixrevisions.com/contests/best-web-design-gallery/#comments">200  participants</a>, and today, we’re glad to announce the winners of the two <strong><em>SnobbySlice </em></strong><em>PSD  to XHTML service</em> worth <strong>$498</strong> each.</p>
<p><a href="http://snobbyslice.com/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/5ee9d_14-01_snobby_slice_leading_img.jpg" width="550" height="250" alt="Announcement: SnobbySlice PSD to XHTML Winners" /></a></p>
<p><span></span></p>
<h3><strong>The winners</strong></h3>
<h4>1. bobby</h4>
<p>comment #<a href="http://sixrevisions.com/contests/best-web-design-gallery/#comment-33119">33119</a></p>
<h4>2. Manuel</h4>
<p>comment #<a href="http://sixrevisions.com/contests/best-web-design-gallery/#comment-32989">32989</a></p>
<p>You should be contacted soon regarding the details on how to claim your prize.</p>
<h3>The Screenshot</h3>
<p>Here is the screenshot of the MySQL query (using  phpMyAdmin):</p>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/964b7_14-02_snobby_winners_query.png" width="550" height="250" alt="phpMyAdmin query screenshot." /></p>
<h3>Thank you SnobbySlice and participants</h3>
<p>Let me take a moment to thank our contest sponsor: <a href="http://snobbyslice.com/"><strong>SnobbySlice</strong></a>, providers of <a href="http://snobbyslice.com/psd-to-html-services.php">PSD to HTML CSS</a> created by coders, for coders.</p>
<p>I&#8217;d also like to thank the people who kindly participated and put in their  vote on the best web design gallery: I hope to summarize the votes into another  post coming soon.</p>
<h3>Stay Tuned!</h3>
<p>Missed out on winning this time? Well, there are more  contests to come, so subscribe to the <a href="http://feeds2.feedburner.com/SixRevisions">RSS feed</a> to make sure you  don’t miss any of them!</p>
<h3>Related content</h3>
<ul>
<li><a href="http://sixrevisions.com/contests/best-web-design-gallery/">Best Web Design Gallery?</a></li>
</ul>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/d2c84_Fm1c2PKFIrk" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/announcement-snobbyslice-psd-to-xhtml-winners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Web Design Gallery?</title>
		<link>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/best-web-design-gallery/</link>
		<comments>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/best-web-design-gallery/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 12:58:57 +0000</pubDate>
		<dc:creator>BlogPoster</dc:creator>
				<category><![CDATA[web resources]]></category>
		<category><![CDATA[best web design]]></category>
		<category><![CDATA[business cards]]></category>
		<category><![CDATA[content announcement]]></category>
		<category><![CDATA[contest ends]]></category>
		<category><![CDATA[contest winners]]></category>
		<category><![CDATA[conversion service]]></category>
		<category><![CDATA[creative juices]]></category>
		<category><![CDATA[flash gallery]]></category>
		<category><![CDATA[lucky winners]]></category>
		<category><![CDATA[mysql query]]></category>
		<category><![CDATA[top notch]]></category>
		<category><![CDATA[valid email address]]></category>
		<category><![CDATA[web design gallery]]></category>

		<guid isPermaLink="false">http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/best-web-design-gallery/</guid>
		<description><![CDATA[There are a ton of web design galleries available on the web, and we’d like to know which web design, CSS/XHTML, Flash gallery you frequent the most to get inspiration and your creative juices flowing. Two prizes to give away! To make things interesting, SnobbySlice, a top-notch PSD to XHTML service for coders and by [...]]]></description>
			<content:encoded><![CDATA[<p>There are a ton of web design galleries available on the  web, and we’d like to know which <strong>web  design, CSS/XHTML, Flash gallery</strong> you frequent the most to get inspiration  and your creative juices flowing.</p>
<p><a href="http://snobbyslice.com/"><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/833eb_06-01_snobbyslide_leading_img.jpg" width="550" height="250" alt="SnobbySlice leading image. Click to go to SnobbySlice home page." /></a></p>
<p><span></span></p>
<h3 id="_two-prizes-to-give-a_1">Two prizes to give away!</h3>
<p>To make things interesting<strong>, <a href="http://snobbyslice.com/index.php">SnobbySlice</a></strong>, a  top-notch PSD to XHTML service <em>for</em> coders and <em>by</em> coders, is offering two  lucky winners a <em>2-page PSD to XHTML/CSS  conversion service</em>, a <strong>$498 value.</strong> Two participants of this survey will be selected at random to win their <a href="http://snobbyslice.com/services.php" title="SnobbySlice - Premium PSD to XHTML/CSS Service page.">excellent PSD to  XHTML service</a>. You can see the SnobySlice prices <a href="http://snobbyslice.com/order.php" title="SnobbySlice - Premium PSD to XHTML/CSS order page.">here</a>.</p>
<h3 id="_how-to-vote_1">How to vote</h3>
<p>To vote, simply leave a comment below in the following  format:</p>
<pre>vote: http://urlofwebdesigngallery.com</pre>
<p>For example, my personal favorite is <a href="http://www.thebestdesigns.com/">The Best Designs</a>, so my vote would  be: <code>vote: http://www.thebestdesigns.com/</code></p>
<h3 id="_the-details_1">The details</h3>
<ul>
<li>You must leave a <strong>valid  email address</strong> when filling up the comment form so that we can contact you  if you’ve won.</li>
<li>You can only cast your vote once.</li>
<li>Contest ends on <strong>April  13, 2009</strong>, after which comments will be disabled.</li>
<li>Winners will be selected at random using a MySQL query  similar to <a href="http://sixrevisions.com/contests/flasheff-contest-results/">other  contests</a>.</li>
<li>Format your vote as specified or you risk the chance of not  being able to participate.</li>
</ul>
<h3 id="_about-snobbyslice_1">About SnobbySlice</h3>
<p><strong><a href="http://snobbyslice.com/index.php">SnobbySlice</a></strong> takes your design,  in many formats, and then converts it into “code” which makes it ready for the  web (XHTML/CSS). They promise high-quality, rapid, timely, and very <a href="http://snobbyslice.com/order.php">competitive prices</a> for all projects  they partake in: here’s where you can learn more <a href="http://snobbyslice.com/services.php">about their services</a>.</p>
<h3 id="_sup-dawg-we-heard-yo_1">Sup dawg, we heard you like polls, so we put a poll in this  poll so you can vote while voting!</h3>
<p> <a href="http://answers.polldaddy.com/poll/1514848/">How often should we run contests?</a>  <br /> <span> (<a href="http://www.polldaddy.com">  polls</a>)</span></p>
<h3 id="_related-content_1">Related content</h3>
<ul>
<li><a href="http://sixrevisions.com/contests/announcement-flashotaku-contest-winners/">Announcement: FlashOtaku Contest Winners</a></li>
<li><a href="http://sixrevisions.com/contests/best-text-editor-for-developers-10-prizes-to-give-away/">Best Text Editor for Developers? 10 Prizes to Give Away.</a></li>
<li><a href="http://sixrevisions.com/contests/the-winners-of-the-10000-business-cards-giveaway/">The Winners of the 10,000 Business Cards Giveaway</a></li>
</ul>
<p><img src="http://www.neurosoftware.ro/programming-blog/wp-content/plugins/wp-o-matic/cache/833eb_KzvZHziKV4I" height="1" width="1" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.neurosoftware.ro/programming-blog/blogposter/web-resources/best-web-design-gallery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

