<?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>Random Web Tools &#187; Code</title>
	<atom:link href="http://www.randomtools.net/tag/code/feed" rel="self" type="application/rss+xml" />
	<link>http://www.randomtools.net</link>
	<description>Advice and tools from a young web developer</description>
	<lastBuildDate>Mon, 16 Aug 2010 06:16:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Freelance &#8220;time card&#8221; calculator</title>
		<link>http://www.randomtools.net/freelance-time-card-calculator-3.html</link>
		<comments>http://www.randomtools.net/freelance-time-card-calculator-3.html#comments</comments>
		<pubDate>Mon, 12 May 2008 07:53:53 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Web Tools]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[freelance]]></category>

		<guid isPermaLink="false">http://www.randomtools.net/?p=3</guid>
		<description><![CDATA[I don&#8217;t know how many others will find this handy, but I&#8217;ve found it handy myself. It&#8217;s tools like this that make this site &#8220;Random Web Tools.&#8221; The script is very simple. I just basically created a format for logging the time you work in a text file, so that you can copy and paste [...]]]></description>
			<content:encoded><![CDATA[<p><div style="width: 300px; height: 250px; margin: 3px;"><script type="text/javascript"><!--
google_ad_client = "pub-1936238606905173";
google_ad_slot = "4013486594";
google_ad_width = 300;
google_ad_height = 250;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</div>I don&#8217;t know how many others will find this handy, but I&#8217;ve found it handy myself.  It&#8217;s tools like this that make this site &#8220;Random Web Tools.&#8221; <img src='http://www.randomtools.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The script is very simple.  I just basically created a format for logging the time you work in a text file, so that you can copy and paste in your &#8220;time card&#8221; and it will spit out your total time worked.  The script could easily be modified to your liking.  I threw up an example <a href="http://www.randomtools.net/scripts/times.php">here</a>.  I originally wrote the script and also ported it to PHP.</p>
<p>Enter the times in the following format, separated by new lines or whatever. Whitespace does not matter.  The number in the parenthesis is what counts.  That&#8217;s the total hours:minutes worked during that period of work.  The script could be improved by just counting up from the times themselves, but there are lots of problems that could run into unless you included dates, and for personal reasons, I chose not to do that.  Don&#8217;t forget to change the hourly_rate variable if you want it to tell you how much you get owed.</p>
<pre>1:27 PM - 2:08 PM		(0:41)
12:09 AM - 1:12 AM		(1:03)</pre>
<p><strong>Demo: </strong><a href="http://www.randomtools.net/scripts/times.php" target="_blank">http://www.randomtools.net/scripts/times.php</a></p>
<p><strong>HTML form:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span>&gt;</span>Enter the times, separated by new lines or whatever. Whitespace does not matter.<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;post&quot;</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span>
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">textarea</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;times&quot;</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;width: 300px; height: 200px;&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">br</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">button</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span>&gt;</span>Go<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">button</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></td></tr></table></div>

<p><strong>PHP source code:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #000088;">$hourly_rate</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">30</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// Change this to your wage</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_METHOD'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'POST'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$arr</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$x</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$str</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_POST</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'times'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$pos</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'('</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$pos</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$pos2</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">')'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$arr</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$x</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #339933;">,</span> <span style="color: #000088;">$pos</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span> <span style="color: #000088;">$pos2</span> <span style="color: #339933;">-</span> <span style="color: #000088;">$pos</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$str</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #339933;">,</span> <span style="color: #000088;">$pos2</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span> <span style="color: #990000;">strlen</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$pos</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$str</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'('</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$x</span><span style="color: #339933;">++;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000088;">$hours</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$minutes</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$x</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span> <span style="color: #000088;">$x</span> <span style="color: #339933;">&lt;</span> <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$arr</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000088;">$x</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$arr2</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">':'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$arr</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$x</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$minutes</span> <span style="color: #339933;">+=</span> <span style="color: #000088;">$arr2</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$minutes</span> <span style="color: #339933;">&gt;=</span> <span style="color: #cc66cc;">60</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$hours</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$hours</span> <span style="color: #339933;">+</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span>
			<span style="color: #000088;">$minutes</span> <span style="color: #339933;">-=</span> <span style="color: #cc66cc;">60</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #000088;">$hours</span> <span style="color: #339933;">+=</span> <span style="color: #000088;">$arr2</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #000088;">$total</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$hours</span> <span style="color: #339933;">*</span> <span style="color: #cc66cc;">15</span> <span style="color: #339933;">+</span> <span style="color: #000088;">$minutes</span> <span style="color: #339933;">/</span> <span style="color: #cc66cc;">60</span> <span style="color: #339933;">*</span> <span style="color: #cc66cc;">15</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;p&gt;Worked &lt;b&gt;<span style="color: #006699; font-weight: bold;">$hours</span> hours&lt;/b&gt; and &lt;b&gt;<span style="color: #006699; font-weight: bold;">$minutes</span> minutes&lt;/b&gt; (&quot;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">number_format</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hours</span> <span style="color: #339933;">+</span> <span style="color: #000088;">$minutes</span> <span style="color: #339933;">/</span> <span style="color: #cc66cc;">60</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'.'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;)&lt;br /&gt;That's $&quot;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">number_format</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hours</span> <span style="color: #339933;">+</span> <span style="color: #000088;">$minutes</span> <span style="color: #339933;">/</span> <span style="color: #cc66cc;">60</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">*</span> <span style="color: #000088;">$hourly_rate</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'.'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;/p&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><strong>ASP source code:</strong></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
</pre></td><td class="code"><pre class="asp" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;%</span>
hourly_rate <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">30</span> <span style="color: #008000;">'Change this to your wage</span>
<span style="color: #990099; font-weight: bold;">If</span> <span style="color: #990099; font-weight: bold;">Request</span>.<span style="color: #330066;">ServerVariables</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;REQUEST_METHOD&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #cc0000;">&quot;POST&quot;</span> <span style="color: #990099; font-weight: bold;">Then</span>
	<span style="color: #990099; font-weight: bold;">ReDim</span> arr<span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #800000;">0</span><span style="color: #006600; font-weight:bold;">&#41;</span>
	x <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">0</span>
	str <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #990099; font-weight: bold;">Request</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;times&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
	pos <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">InStr</span><span style="color: #006600; font-weight:bold;">&#40;</span>str, <span style="color: #cc0000;">&quot;(&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
	<span style="color: #990099; font-weight: bold;">While</span> pos <span style="color: #006600; font-weight: bold;">&gt;</span> <span style="color: #800000;">0</span>
		<span style="color: #990099; font-weight: bold;">ReDim</span> <span style="color: #990099; font-weight: bold;">Preserve</span> arr<span style="color: #006600; font-weight:bold;">&#40;</span>x<span style="color: #006600; font-weight:bold;">&#41;</span>
		pos2 <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">InStr</span><span style="color: #006600; font-weight:bold;">&#40;</span>str, <span style="color: #cc0000;">&quot;)&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
		arr<span style="color: #006600; font-weight:bold;">&#40;</span>x<span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">=</span> Mid<span style="color: #006600; font-weight:bold;">&#40;</span>str, pos + <span style="color: #800000;">1</span>, pos2 - pos - <span style="color: #800000;">1</span><span style="color: #006600; font-weight:bold;">&#41;</span>
		str <span style="color: #006600; font-weight: bold;">=</span> Mid<span style="color: #006600; font-weight:bold;">&#40;</span>str, pos2 + <span style="color: #800000;">2</span>, <span style="color: #330066;">Len</span><span style="color: #006600; font-weight:bold;">&#40;</span>str<span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
		pos <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #330066;">InStr</span><span style="color: #006600; font-weight:bold;">&#40;</span>str, <span style="color: #cc0000;">&quot;(&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
		x <span style="color: #006600; font-weight: bold;">=</span> x + <span style="color: #800000;">1</span>
	<span style="color: #990099; font-weight: bold;">Wend</span>
&nbsp;
	hours <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">0</span>
	minutes <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">0</span>
&nbsp;
	<span style="color: #990099; font-weight: bold;">For</span> x <span style="color: #006600; font-weight: bold;">=</span> <span style="color: #800000;">0</span> <span style="color: #990099; font-weight: bold;">To</span> <span style="color: #330066;">UBound</span><span style="color: #006600; font-weight:bold;">&#40;</span>arr<span style="color: #006600; font-weight:bold;">&#41;</span>
		arr2 <span style="color: #006600; font-weight: bold;">=</span> Split<span style="color: #006600; font-weight:bold;">&#40;</span>arr<span style="color: #006600; font-weight:bold;">&#40;</span>x<span style="color: #006600; font-weight:bold;">&#41;</span>, <span style="color: #cc0000;">&quot;:&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
&nbsp;
		minutes <span style="color: #006600; font-weight: bold;">=</span> minutes + <span style="color: #990099; font-weight: bold;">CInt</span><span style="color: #006600; font-weight:bold;">&#40;</span>arr2<span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #800000;">1</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
&nbsp;
		<span style="color: #990099; font-weight: bold;">If</span> minutes <span style="color: #006600; font-weight: bold;">&gt;=</span> <span style="color: #800000;">60</span> <span style="color: #990099; font-weight: bold;">Then</span>
			hours <span style="color: #006600; font-weight: bold;">=</span> hours + <span style="color: #800000;">1</span>
			minutes <span style="color: #006600; font-weight: bold;">=</span> minutes - <span style="color: #800000;">60</span>
		<span style="color: #990099; font-weight: bold;">End</span> <span style="color: #990099; font-weight: bold;">If</span>
&nbsp;
		hours <span style="color: #006600; font-weight: bold;">=</span> hours + <span style="color: #990099; font-weight: bold;">CInt</span><span style="color: #006600; font-weight:bold;">&#40;</span>arr2<span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #800000;">0</span><span style="color: #006600; font-weight:bold;">&#41;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
	<span style="color: #990099; font-weight: bold;">Next</span>
&nbsp;
	total <span style="color: #006600; font-weight: bold;">=</span> hours <span style="color: #006600; font-weight: bold;">*</span> <span style="color: #800000;">15</span> + minutes <span style="color: #006600; font-weight: bold;">/</span> <span style="color: #800000;">60</span> <span style="color: #006600; font-weight: bold;">*</span> <span style="color: #800000;">15</span>
&nbsp;
	<span style="color: #990099; font-weight: bold;">Response</span>.<span style="color: #330066;">Write</span><span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #cc0000;">&quot;&lt;p&gt;Worked &lt;b&gt;&quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> hours <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot; hours&lt;/b&gt; and &lt;b&gt;&quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> minutes <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot; minutes&lt;/b&gt; (&quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> FormatNumber<span style="color: #006600; font-weight:bold;">&#40;</span>hours + minutes <span style="color: #006600; font-weight: bold;">/</span> <span style="color: #800000;">60</span>, <span style="color: #800000;">2</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot;)&lt;br /&gt;That's &quot;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> FormatCurrency<span style="color: #006600; font-weight:bold;">&#40;</span><span style="color: #006600; font-weight:bold;">&#40;</span>hours + minutes <span style="color: #006600; font-weight: bold;">/</span> <span style="color: #800000;">60</span><span style="color: #006600; font-weight:bold;">&#41;</span>, <span style="color: #800000;">2</span><span style="color: #006600; font-weight:bold;">&#41;</span> <span style="color: #006600; font-weight: bold;">&amp;</span> <span style="color: #cc0000;">&quot;&lt;/p&gt;&quot;</span><span style="color: #006600; font-weight:bold;">&#41;</span>
<span style="color: #990099; font-weight: bold;">End</span> <span style="color: #990099; font-weight: bold;">If</span>
<span style="color: #000000; font-weight: bold;">%&gt;</span></pre></td></tr></table></div>

<div class='bookmarkify'><a name='bookmarkify'></a><div class='title' title='Use these links to share this page with others'>Bookmark this page</div><div class='linkbuttons'><a href='http://del.icio.us/post?url=http://www.randomtools.net/freelance-time-card-calculator-3.html&amp;title=Freelance &#8220;time card&#8221; calculator' title='Save to del.icio.us' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/delicious.png' style='width:16px; height:16px;' alt='[del.icio.us] ' /></a> <a href='http://digg.com/submit?phase=2&amp;url=http://www.randomtools.net/freelance-time-card-calculator-3.html&amp;title=Freelance &#8220;time card&#8221; calculator' title='Digg It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/digg.png' style='width:16px; height:16px;' alt='[Digg] ' /></a> <a href='http://www.facebook.com/share.php?u=http://www.randomtools.net/freelance-time-card-calculator-3.html' title='Save to Facebook' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/facebook.png' style='width:16px; height:16px;' alt='[Facebook] ' /></a> <a href='http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://www.randomtools.net/freelance-time-card-calculator-3.html&amp;title=Freelance &#8220;time card&#8221; calculator' title='Save to Google Bookmarks' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/google.png' style='width:16px; height:16px;' alt='[Google] ' /></a> <a href='http://reddit.com/submit?url=http://www.randomtools.net/freelance-time-card-calculator-3.html&amp;title=Freelance &#8220;time card&#8221; calculator' title='Reddit' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/reddit.png' style='width:16px; height:16px;' alt='[Reddit] ' /></a> <a href='http://slashdot.org/bookmark.pl?url=http://www.randomtools.net/freelance-time-card-calculator-3.html&amp;title=Freelance &#8220;time card&#8221; calculator' title='Slashdot It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/slashdot.png' style='width:16px; height:16px;' alt='[Slashdot] ' /></a> <a href='http://www.stumbleupon.com/submit?url=http://www.randomtools.net/freelance-time-card-calculator-3.html&amp;title=Freelance &#8220;time card&#8221; calculator' title='Stumble It!' onclick='target="_blank";' rel='nofollow'><img src='http://www.randomtools.net/wp-content/plugins/bookmarkify/stumbleupon.png' style='width:16px; height:16px;' alt='[StumbleUpon] ' /></a> </div></div>]]></content:encoded>
			<wfw:commentRss>http://www.randomtools.net/freelance-time-card-calculator-3.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
