<?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>Krio Media</title>
	<atom:link href="http://www.krio.me/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.krio.me</link>
	<description></description>
	<lastBuildDate>Mon, 05 Jul 2010 06:27:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to use Tor to make a C# HttpWebRequest</title>
		<link>http://www.krio.me/use-tor-to-make-a-c-sharp-httpwebrequest/</link>
		<comments>http://www.krio.me/use-tor-to-make-a-c-sharp-httpwebrequest/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 06:19:18 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=1226</guid>
		<description><![CDATA[Want to use Tor so that you can make annoymous and secure web requests while coding in C#? Use this easy technique. Typically when making an HttpWebRequest with C# you would write something to this effect: HttpWebRequest request = (HttpWebRequest)WebRequest.Create(&#34;http://yourtargetURL.org&#34;); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); This will work fine, however your connection will not be anonymous. Using [...]]]></description>
			<content:encoded><![CDATA[<p>Want to use Tor so that you can make annoymous and secure web requests while coding in C#? Use this easy technique. <span id="more-1226"></span>Typically when making an HttpWebRequest with C# you would write something to this effect:</p>
<pre class="brush: plain;">
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(&quot;http://yourtargetURL.org&quot;);
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
</pre>
<p>This will work fine, however your connection will not be anonymous. Using Tor, you can effectively create an anonymous connection. First, make sure to install Tor and run it. The typical Tor Windows install will install Privoxy along with Vidalia. To make your C# web request run through Tor, you need to override the default proxy property to contact Prioxy.</p>
<pre class="brush: plain;">
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(&quot;http://yourtargetURL.org&quot;);
request.Proxy = new WebProxy(&quot;127.0.0.1:8118&quot;); // default privoxy port for tor
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
</pre>
<p>127.0.0.1:8118 is the default address for Privoxy. Your HttpWebRequest will now be routed through Tor. Make sure that you do not have any firewalls blocking this default port.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/use-tor-to-make-a-c-sharp-httpwebrequest/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Learning C#: .NET Overview</title>
		<link>http://www.krio.me/learning-c-sharp-dot-net-overview/</link>
		<comments>http://www.krio.me/learning-c-sharp-dot-net-overview/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 23:15:25 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[C# Applications with .NET 4]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=1140</guid>
		<description><![CDATA[This section of the Learning C# 2010 along with .NET 4 series will lay the foundation necessary to write C# and .NET applications. You will learn how .NET functions and how it makes your life as a programmer easier. An overview of how the base class library will be provided along with how .NET&#8217;s Common [...]]]></description>
			<content:encoded><![CDATA[<p>This section of the Learning C# 2010 along with .NET 4 series will lay the foundation necessary to write C# and .NET applications. You will learn how .NET functions and how it makes your life as a programmer easier. An overview of how the base class library will be provided along with how .NET&#8217;s Common Intermediate Language, Common Language Runtime, Common Type System, and Common Language Specification work together to make your applications run.<span id="more-1140"></span></p>
<h2>Why use .NET?</h2>
<p>.NET allows us to leverage existing code from other .NET languages and integrate them together into one language unspecific assembly. This allows programming to use many existing code samples into their applications, which can help to improve development time and decrease costs. .NET provides a single runtime engine that all .NET supported languages can use together with typical debugging and inheritance features. .NET&#8217;s extensive base class library can be leveraged to deploy more feature-rich applications in a shorter time frame.</p>
<h2>What makes .NET tick?</h2>
<p>.NET is primarily comprised of a runtime environment combined with a base class library.  There are three main features that make .NET into the powerful solution that is it.</p>
<ul>
<li>CLR &#8211; Common Language Runtime</li>
<li>CTS &#8211; Common Type System</li>
<li>CLS &#8211; Common Language Specification</li>
</ul>
<p>While you do now need to know what is happening under the hood of these three entities you do need to have an understanding of their purposes.</p>
<h3>.NET&#8217;s Common Language Runtime</h3>
<p>This is .NET&#8217;s runtime environment that is used to control aspects of .NET, such as data types. The CLR will keep memory in a stable state, it will provide application management, and thread allocation (multi CPU platforms). Another important feature of the CLR is its duty to manage security on the host machine related to your application.</p>
<h3>.NET&#8217;s Common Type System</h3>
<p>The CTS is utilized to define standard compliant type definitions for .NET applications. If you want your C# application to play nicely with other programming languages, you will want to make sure to use data types that the CTS states are compliant. The CTS also defines how these standard types will integrate with each other. C# allows you to utilize types that are not defined in the CTS and while you are more than welcome to take advantage of them in your scripts, be warned that you will not be able to pass these data types to a language that does not support it. You can however, utilize the type inside of a function, but not return it to another language, which the system does support.</p>
<h3>.NET&#8217;s Common Language Specification</h3>
<p>When envisioning the CLS, picture it as a subset of the Common Type System. It is the part of the CTS that actually makes the definitions of what is compatible and what types can be used together in unison. Through the compiler, you can test for CTS compatibility.</p>
<h3>.NET Libraries</h3>
<p>One of the most important features that .NET brings to programming is its base class library that supports all .NET languages. The .NET base class library provides useful classes related to database interaction, security, input &amp; output file operations, XML integration, and even visual desktop integration. Think of the .NET base class library as a collection of code that you can leverage to develop applications more quickly and efficiently.</p>
<h3>C#&#8217;s role in .NET</h3>
<p>C# is Microsoft&#8217;s programming language developed specifically to provide seamless integration with .NET. While .NET does support other programming languages that have been around from before C#, Microsoft felt that they needed a new language that would be able to rival more advanced languages that their existing languages simply could not. Thus C# was born with the advanced language features that programmers needed. C# inherits from many C-style languages and even functional languages, such as LISP.</p>
<h3>C# Compilation</h3>
<p>When you put your C# source code through the C# compiler it is converted into an intermediate language known as the Common Intermediate Language, or CIL. This intermediate language is in the form of an .exe or dll file. Similarly, if you are using Visual Basic, your source code would be compiled into the intermediate language that would look very similar to your C# code. This is how .NET is able to allow different programming languages to work together. The intermediate language and meta data that accompanies it is setup in such a way by the compiler that it is portable between languages. When your program is run and the CLR (.NET runtime) references a piece of code in the CIL that is then compiled into instructions that can be run on your specific machine. This compiled code will look different depending on your operating system and speed of your computer. For example, mobile applications will most likely have less memory available and the runtime will take this into account before final compilation of the CIL (intermediate language) into machine specific instructions.</p>
<p>The method that is used to take the CIL (intermediate language) and produce the final instructions is known as the just-in-time compiler. The just-in-time compiler (JIT) produces code specific to the target machine. One important feature of the JIT is its ability to cache its output for the future if it is likely that a piece of code will be run again in the future, thus it will not need to compile it again.</p>
<h3>The .NET System namespace in the base class library</h3>
<p>Namespaces are used in .NET to group related libraries and types. Under the System library we have many assemblies, such as System.Collections, which deals with container types, and System.Drawing, which provides user interface tools for creating desktop apps. You cannot expect to build any useful applications in C# without referencing at least the System namespace in your applications. Namespaces can contain any number of nested namespaces. Thus we see System.Xml and System.Security, which are both nested inside of the System namespace.</p>
<p>This seems to be a good time to showcase our first piece of C# code. Below you can see how one would typically include these namespace into code.</p>
<pre class="brush: plain;">
using System;
using System.Collections;
public class OurArrayList {

   public static void Main()  {

      // create ourList array
      ArrayList ourList = new ArrayList();
      ourList.Add(&amp;quot;Krio&amp;quot;);
      ourList.Add(&amp;quot;is&amp;quot;);
      ourList.Add(&amp;quot;awesome&amp;quot;);
   }
}
</pre>
<p>This example shows how you would reference a namespace at the top of your C# code. Once you utilize the &#8216;using&#8217; keyword and reference a namespace you can call the classes located inside of that namespace. In this example we are instantiating the ArrayList class into the object ourList and utilizing the method Add.</p>
<h2>Section 1 Conclusion</h2>
<p>This first section in the Learning C# 2010 along with .NET 4 series has provided you with a firm foundation related to gaining an understanding of what happens in the background when you create C# applications with .NET. In addition, you have a functional understanding of the base class library and how to integrate a namespace.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/learning-c-sharp-dot-net-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loop twice through a PHP / MySQL result set</title>
		<link>http://www.krio.me/loop-twice-through-a-php-mysql-result-set/</link>
		<comments>http://www.krio.me/loop-twice-through-a-php-mysql-result-set/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 22:39:29 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP Tutorials]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=1125</guid>
		<description><![CDATA[I get asked all the time if it is possible to loop multiple times through a MySQL result set in PHP. Here&#8217;s the answer. First, you&#8217;ll need a MySQL result set. To do that you&#8217;ll need to select something from your database and loop through it like so: $result = mysql_query(&#34;SELECT * FROM my_table&#34;); while($row [...]]]></description>
			<content:encoded><![CDATA[<p>I get asked all the time if it is possible to loop multiple times through a MySQL result set in PHP. Here&#8217;s the answer.</p>
<p><span id="more-1125"></span></p>
<p>First, you&#8217;ll need a MySQL result set. To do that you&#8217;ll need to select something from your database and loop through it like so:</p>
<pre class="brush: php;">

$result = mysql_query(&quot;SELECT * FROM my_table&quot;);

while($row = mysql_fetch_assoc($result)) {

// inside the loop

}
</pre>
<p>The problem is, if you want to loop through the same result set again, you will get an error because the internal pointer is currently at the end of the result. You will need to put the pointer back at the beginning of the result set so that you can loop through it again.</p>
<p>You can do it with a helpful php function named mysql_data_seek.</p>
<pre class="brush: php;">

mysql_data_seek($result, 0); // set the pointer of the result set back to the beginning.

while($row2 = mysql_fetch_assoc($result)) {

// inside the loop

}
</pre>
<p>This demonstrates how, as a PHP website developer, you can reset the pointer of a MySQL result set, which will allow you to iterate through the result set for a second time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/loop-twice-through-a-php-mysql-result-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learning C# 2010 along with .NET 4</title>
		<link>http://www.krio.me/learning-c-sharp-2010-dot-net-4-series-overview/</link>
		<comments>http://www.krio.me/learning-c-sharp-2010-dot-net-4-series-overview/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 22:06:42 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[C# Applications with .NET 4]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=1128</guid>
		<description><![CDATA[This series will take you through all of the necessary steps to becoming a professional C# application developer. The C# 2010 language, combined with .NET 4.0 with be examined step-by-step to provide you with both practical and theoretical explanations to programming in C#. The .NET base class libraries will be examined related to how they [...]]]></description>
			<content:encoded><![CDATA[<p>This series will take you through all of the necessary steps to becoming a professional C# application developer. The C# 2010 language, combined with .NET 4.0 with be examined step-by-step to provide you with both practical and theoretical explanations to programming in C#. The .NET base class libraries will be examined related to how they are utilized to create sophisticated Windows applications with C#.<span id="more-1128"></span></p>
<h2>Who is this C# tutorial series for?</h2>
<p>There will be two ideal targets for this tutorial series on C#. Individuals who has never programed before and professional programmers looking to learn to program in C#. The sections will be clearly outlined so that individuals will know which section is right for them. This means that individuals with experience in coding (any language will do) who have dealt with object oriented techniques in the past will most likely not need to spend much time learning about variables, while new programmers will need to spend more time on these sections. This series will concentrate on providing programmers with instruction, examples, and tutorials that will provide a strong base for coding syntactically clean, scalable, and standards compliant C# applications for the windows platform.</p>
<h2>Learning C# 2010 Series Outcomes</h2>
<h5>For New Programmers</h5>
<ul>
<li>Learn about programming language keywords, such as syntax, comments, datatypes, variables, loops, and functions.</li>
<li>Gain the ability to code complex, scalable, and standards compliant C# applications in a professional environment.</li>
<li>Quickly move on to learning more advanced features that will get you developing useful applications in no-time.</li>
<li>New Programmers will need to read the articles title &#8216;Essentials&#8217;, which are targeted towards individuals with no previous coding experience.</li>
</ul>
<h5 style="margin-top: 10px;">For Experienced Programmers</h5>
<ul>
<li>Quickly learn how the basics are created in C#, such as variables, loops, libraries, and objects.</li>
<li>Move on to more specific areas, such as generics, multi-threaded applications, and so on.</li>
<li>Learn Microsoft&#8217;s flagship platform and programming language.</li>
<li>Transfer your existing programming knowledge to the C# language.</li>
<li>Gain the ability to code complex, scalable, and standards compliant C# applications in a professional environment.</li>
<li>Coders with experience in other programming languages may find it beneficial to skip the articles labeled &#8216;Essentials&#8217;. If you feel lost during a technical discussion, just come back to these articles as they will lay the programming foundations.</li>
</ul>
<h2 style="margin-top: 10px;">Learning C# 2010 along with .NET 4 Sections</h2>
<h3>.NET Overview</h3>
<p><a title="Learning C# - .NET Overview" href="http://www.krio.me/learning-c-sharp-dot-net-overview/" target="_self">Learning C# &#8211; .NET Overview</a><br />
This section will give you the necessary knowledge related to how .NET programming languages work and how the code you write in future chapters is executed. It will cover what happens when you compile your application along with how the various .NET programming languages, such as C#, VB, and F# can work together if you keep your code standards compliant. Base class libraries will be explored along with the .NET runtime environment.</p>
<p>Note: I will be releasing articles and tutorials as I am able to write them. Not necessarily at one time. I will also be released video tutorials that will use these articles are learning outcome references.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/learning-c-sharp-2010-dot-net-4-series-overview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ternary Operators in PHP: Shorthand If Else Statements</title>
		<link>http://www.krio.me/ternary-operators-in-php-shorthand-if-else-statements/</link>
		<comments>http://www.krio.me/ternary-operators-in-php-shorthand-if-else-statements/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 19:08:09 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[PHP Tutorials]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=1106</guid>
		<description><![CDATA[If-Else statements are a vital part of programming, however sometimes all the code that goes into writing are not required, especially if only only simple condition is needed. This is what the ternary operator is used for. The ternary operator is a shorthand if/else statement. It allows developers to form conditions quickly and in a [...]]]></description>
			<content:encoded><![CDATA[<p>If-Else statements are a vital part of programming, however sometimes all the code that goes into writing are not required, especially if only only simple condition is needed. This is what the ternary operator is used for.<span id="more-1106"></span></p>
<p>The ternary operator is a shorthand if/else statement. It allows developers to form conditions quickly and in a very readable fashion.</p>
<h3>Here is the ternary syntax</h3>
<pre class="brush: php;">

(condition) ? true-stuff-here : false-stuff-here;
</pre>
<p>Here is an example of the ternary operator</p>
<pre class="brush: php;">

$age = 20;

$response = ($age &gt; 29) ? 'He's in his thirties' : 'He's not';

echo $response; // He's not
</pre>
<p>I hope you can see the usefulness in the ability for the ternary operator to easily perform conditional comparisons. Please however, refrain from using &#8216;nested ternary comparisons&#8217; as the are very difficult to  so read. It is so frowned upon by web developers that I&#8217;m not even going to post an example.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/ternary-operators-in-php-shorthand-if-else-statements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sort an Array in PHP by Date</title>
		<link>http://www.krio.me/sort-an-array-in-php-by-date/</link>
		<comments>http://www.krio.me/sort-an-array-in-php-by-date/#comments</comments>
		<pubDate>Sat, 17 Apr 2010 18:45:41 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[PHP Tutorials]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=1104</guid>
		<description><![CDATA[Sorting an array in PHP is not as difficult as many people make it out to be. This quick tutorial will walk you through the steps necessary to sort a date array. Sorting a PHP Array by Date The first step is ensuring that the dates are placed into the array in proper format. When [...]]]></description>
			<content:encoded><![CDATA[<p>Sorting an array in PHP is not as difficult as many people make it out to be. This quick tutorial will walk you through the steps necessary to sort a date array. <span id="more-1104"></span></p>
<h3>Sorting a PHP Array by Date</h3>
<p>The first step is ensuring that the dates are placed into the array in proper format. When you add the date to the array, the best and most compatible way to do do is to run the PHP date function on the date value. This function works no matter what format the date is in, including a MySQL datetime column or a PHP timestamp.</p>
<p>So to enter dates into your array you can do something like:</p>
<pre class="brush: php;">
$dateArray[] = date('Y-m-d');

//If you are iterating through something like a database with date's you could do something like:

$dateArray[] = date('Y-m-d', $row['date']);
</pre>
<h3>One you have your date array set</h3>
<p>All you need to do is run a  sorting function on the array.</p>
<h3>Most recent date first</h3>
<pre class="brush: php;">

rsort($dateArray);
</pre>
<h3>Oldest date first</h3>
<pre class="brush: php;">
sort($dateArray);
</pre>
<p>I hope this quick tutorial will help you in your website development and design endeavors!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/sort-an-array-in-php-by-date/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Apache rewrite entire domain to a single page</title>
		<link>http://www.krio.me/redirect-everything-domain-server-specific-page-apache-rewrite/</link>
		<comments>http://www.krio.me/redirect-everything-domain-server-specific-page-apache-rewrite/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 19:30:51 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[Apache]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=1094</guid>
		<description><![CDATA[Whenever I need to bring a page down quickly for maintenance I use this Apache Rewrite snippet of code to redirect everything on the server to a specific page that usually holds some kind of maintenance or error message. The Apache Rewrite Code RewriteEngine on RewriteCond %{REQUEST_URI} !/theTempPage.php$ RewriteRule $ /theTempPage.php [R=307,L] First we turn [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever I need to bring a page down quickly for maintenance I use this Apache Rewrite snippet of code to redirect everything on the server to a specific page that usually holds some kind of maintenance or error message. <span id="more-1094"></span></p>
<h3>The Apache Rewrite Code</h3>
<pre class="brush: plain;">

RewriteEngine on

RewriteCond %{REQUEST_URI} !/theTempPage.php$

RewriteRule $ /theTempPage.php [R=307,L]
</pre>
<p>First we turn on the Rewrite engine (depending on your configuration .htaccess file it may already be on, however it won&#8217;t hurt Apache to include this if it is).</p>
<p>We then tell Apache to find pretty much everything after the domain name in a URL that is not equal to the maintenance page (in this case it is theTempPage.php).</p>
<p>If the URL is not equal to the condition, the user is forwarded to the maintenance page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/redirect-everything-domain-server-specific-page-apache-rewrite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Innovative Mobile &#8211; Website Design</title>
		<link>http://www.krio.me/innovative-mobile-web-design/</link>
		<comments>http://www.krio.me/innovative-mobile-web-design/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 02:27:28 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=1086</guid>
		<description><![CDATA[A custom website design for a Miami based wholesale phone company by Krio Media.This web design was created for Innovative Mobile to showcase some of the cell phones that they have available for purchase. A CMS system was also developed to assist in the addition of phones and updating of content. Looking for website design [...]]]></description>
			<content:encoded><![CDATA[<p>A custom website design for a Miami based wholesale phone company by Krio Media.<span id="more-1086"></span>This web design was created for Innovative Mobile to showcase some of the cell phones that they have available for purchase. A CMS system was also developed to assist in the addition of phones and updating of content. Looking for website design or development services in Miami? <a title="Contact Kevin Rio Miami Web Designer" href="http://www.krio.me/contact/">Contact Kevin</a>.</p>
<p><a title="Prestige American Financial Trust" href="http://www.innovmobile.com" target="_blank"><img title="Click to view" src="http://www.krio.me/wp-content/themes/krio/img/viewthesite.png" alt="" /></a></p>
<p><a href="http://www.krio.me/wp-content/uploads/2010/03/innovmobile.jpg"><img class="alignnone size-full wp-image-1087" title="Innovative Mobile" src="http://www.krio.me/wp-content/uploads/2010/03/innovmobile.jpg" alt="" width="576" height="470" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/innovative-mobile-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prestige American Financial Design</title>
		<link>http://www.krio.me/prestige-american-financial-web-design/</link>
		<comments>http://www.krio.me/prestige-american-financial-web-design/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 01:03:04 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=1081</guid>
		<description><![CDATA[Prestige American Financial needed a simple to navigate website that showcased their services and gave off a feeling of class and high-end business. Krio Media was approached by a local businessman to provide web design services to their small financial consulting and lending firm. They wanted a design that exuded sophistication and a strong business [...]]]></description>
			<content:encoded><![CDATA[<p>Prestige American Financial needed a simple to navigate website that showcased their services and gave off a feeling of class and high-end business. <span id="more-1081"></span>Krio Media was approached by a local businessman to provide web design services to their small financial consulting and lending firm. They wanted a design that exuded sophistication and a strong business sense.</p>
<p><img class="alignnone" title="Prestige American Web Design" src="http://www.krio.me/wp-content/themes/krio/img/prestige.jpg" alt="" width="581" height="568" /></p>
<p><a title="Prestige American Financial Trust" href="http://www.paftrust.com" target="_blank"><img title="Click to view" src="http://www.krio.me/wp-content/themes/krio/img/viewthesite.png" alt="" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/prestige-american-financial-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Craigslist Classifieds PHP Clone Script</title>
		<link>http://www.krio.me/craigslist-classifieds-php-clone-script/</link>
		<comments>http://www.krio.me/craigslist-classifieds-php-clone-script/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 15:59:12 +0000</pubDate>
		<dc:creator>Kevin Rio</dc:creator>
				<category><![CDATA[PHP Scripts]]></category>

		<guid isPermaLink="false">http://www.krio.me/?p=993</guid>
		<description><![CDATA[This is a bare-bones classifieds script that will help web developers to quickly build a full-featured Craigslist clone. About This Craigslist Clone This script is a framework that can be used to get your classifieds site up and running quickly. Classifieds Features Users can register / login / logout Users can post a classifieds ad Users can [...]]]></description>
			<content:encoded><![CDATA[<p>This is a bare-bones classifieds script that will help web developers to quickly build a full-featured Craigslist clone. <span id="more-993"></span></p>
<h3>About This Craigslist Clone</h3>
<p>This script is a framework that can be used to get your classifieds site up and running quickly.</p>
<h3>Classifieds Features</h3>
<ul>
<li>Users can register / login / logout</li>
<li>Users can post a classifieds ad</li>
<li>Users can post images</li>
<li>Admin&#8217;s can set categories in database</li>
<li>Admin&#8217;s can set locations in database</li>
<li>Admin&#8217;s can easily skin the script to fit within their already running sites / templates</li>
<li>This script is completely free for website developers to use in any of your personal or commercial scripts and websites.</li>
<li>The entire script is organized into an easy to understand filesystem with easily to use classes and methods.</li>
</ul>
<h3>What you can use this classifieds script for</h3>
<p>To best use this script, you are going to need to integrate it into your own website design. You should have some knowledge of HTML/CSS to do this. You don&#8217;t need any knowledge of PHP, just copy the the text between the php tags inside of your HTML.</p>
<h3>Usage</h3>
<ul>
<li>Install the classifieds.sql file into your database (via phpMyAdmin or something similar)</li>
<li>Open Db.php and input your database credentials</li>
<li>Open URLs.php and in put the location where you installed the classifieds script</li>
<li>Start skinning and using the script!</li>
</ul>
<p><a title="Classifieds Craigslist Clone Script" href="http://www.krio.me/files/classifieds.zip"><img title="Download File" src="http://www.krio.me/wp-content/themes/krio/img/downloadnow.png" alt="" width="185" height="62" /></a></p>
<p>Feel free to <a title="Contact Krio Media" href="http://www.krio.me/contact/">contact me</a> if you would like me to extend the features or customize this script for you on a contract basis. I&#8217;m a local Miami Website Designer and Developer that has worked on  an array of different types of web development projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krio.me/craigslist-classifieds-php-clone-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
