<?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>Open Script Solution&#187; hours</title>
	<atom:link href="http://www.openscriptsolution.com/tag/hours/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.openscriptsolution.com</link>
	<description>... where solutions for script programming are found ...</description>
	<lastBuildDate>Tue, 31 Jan 2012 03:22:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Convert Seconds to &#8220;Days, Hours:Minutes:Seconds&#8221; Format in Visual Basic 6 (VB6)</title>
		<link>http://www.openscriptsolution.com/2011/08/10/how-to-convert-seconds-to-days-hours-minutes-seconds-format-in-visual-basic-6-vb6/</link>
		<comments>http://www.openscriptsolution.com/2011/08/10/how-to-convert-seconds-to-days-hours-minutes-seconds-format-in-visual-basic-6-vb6/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 15:03:26 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[Date and Time]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[DateTime]]></category>
		<category><![CDATA[days]]></category>
		<category><![CDATA[detik]]></category>
		<category><![CDATA[hari]]></category>
		<category><![CDATA[hours]]></category>
		<category><![CDATA[jam]]></category>
		<category><![CDATA[konversi]]></category>
		<category><![CDATA[menit]]></category>
		<category><![CDATA[minutes]]></category>
		<category><![CDATA[seconds]]></category>
		<category><![CDATA[SecondsToDateTimeSerial]]></category>
		<category><![CDATA[VB6]]></category>
		<category><![CDATA[Visual Basic 6]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1397</guid>
		<description><![CDATA[This following code will give you a complete solution how to convert a Seconds value to a &#8220;Days, Hours:Minutes:Seconds&#8221; format in Visual Basic 6 (VB6). This will be useful when you want to know how many days, hours, minutes, and seconds from the given Seconds value. For example, you have a record which has value [...]]]></description>
			<content:encoded><![CDATA[<p>This following code will give you a complete solution how to convert a Seconds value to a &#8220;Days, Hours:Minutes:Seconds&#8221; format in Visual Basic 6 (VB6). This will be useful when you want to know how many days, hours, minutes, and seconds from the given Seconds value. For example, you have a record which has value of 175 seconds. So, by using this solution, you will know that this 175 seconds is equal with &#8220;2 minutes and 55 seconds&#8221;, or in the standard time format, it will become: &#8220;00:02:55&#8243;. The same way you can do, that if you have a value of 294625 seconds, then you can convert it become a complete days and time format: &#8220;3 day(s), 09:50:25&#8243;, or it is equal with &#8220;3 days, 9 hours, 50 minutes, and 25 seconds&#8221;.</p>
<ol>
<li>
Copy this following function to your .bas module:</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #E56717; font-weight: bold;">Public</span> <span style="color: #E56717; font-weight: bold;">Function</span> SecondsToDateTimeSerial(<span style="color: #151B8D; font-weight: bold;">ByVal</span> Sec <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>) <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">String</span>
  <span style="color: #151B8D; font-weight: bold;">Dim</span> lngSecParam <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
  <span style="color: #151B8D; font-weight: bold;">Dim</span> lngSeconds <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
  <span style="color: #151B8D; font-weight: bold;">Dim</span> lngHours <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
  <span style="color: #151B8D; font-weight: bold;">Dim</span> lngMinutes <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
&nbsp;
  <span style="color: #151B8D; font-weight: bold;">Dim</span> tempSecParam <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Long</span>
&nbsp;
  lngSecParam = Sec
  lngSeconds = lngSecParam \ 86400
  lngSecParam = lngSecParam - (lngSeconds * 86400)
&nbsp;
  lngHours = lngSecParam \ 3600
  lngSecParam = lngSecParam - (lngHours * 3600)
&nbsp;
  lngMinutes = lngSecParam \ 60
  lngSecParam = lngSecParam - (lngMinutes * 60)
&nbsp;
  tempSecParam = lngSecParam
&nbsp;
  SecondsToDateTimeSerial = _
    IIf(Sec &gt;= 86400, lngSeconds &amp; <span style="color: #800000;">&quot; day(s), &quot;</span>, vbNullString) &amp; _
    IIf(Sec &gt;= 0, Format(lngHours, <span style="color: #800000;">&quot;0#&quot;</span>) &amp; <span style="color: #800000;">&quot;:&quot;</span>, vbNullString) &amp; _
    Format(lngMinutes, <span style="color: #800000;">&quot;0#&quot;</span>) &amp; <span style="color: #800000;">&quot;:&quot;</span> &amp; Format(tempSecParam, <span style="color: #800000;">&quot;0#&quot;</span>)
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Function</span></pre></div></div>

</li>
<li>
Try that function by using this following example code:</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;">MsgBox SecondsToDateTimeSerial(175) <span style="color: #008000;">'&lt;-- this will give you an output: &quot;00:02:55&quot;
</span>MsgBox SecondsToDateTimeSerial(294625) '&lt;-- this will give you an <span style="color: #151B8D; font-weight: bold;">output</span>: <span style="color: #800000;">&quot;3 day(s), 09:50:25&quot;</span></pre></div></div>

</li>
</ol>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2011%2F08%2F10%2Fhow-to-convert-seconds-to-days-hours-minutes-seconds-format-in-visual-basic-6-vb6%2F&amp;title=How%20to%20Convert%20Seconds%20to%20%26%238220%3BDays%2C%20Hours%3AMinutes%3ASeconds%26%238221%3B%20Format%20in%20Visual%20Basic%206%20%28VB6%29" id="wpa2a_2"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2011/08/10/how-to-convert-seconds-to-days-hours-minutes-seconds-format-in-visual-basic-6-vb6/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Know the Difference or Time Duration Between Two Dates in PHP</title>
		<link>http://www.openscriptsolution.com/2009/12/14/how-to-know-the-difference-or-time-duration-between-two-dates-in-php/</link>
		<comments>http://www.openscriptsolution.com/2009/12/14/how-to-know-the-difference-or-time-duration-between-two-dates-in-php/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 15:39:42 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[calculate]]></category>
		<category><![CDATA[dates]]></category>
		<category><![CDATA[days]]></category>
		<category><![CDATA[difference]]></category>
		<category><![CDATA[duration]]></category>
		<category><![CDATA[hours]]></category>
		<category><![CDATA[minutes]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[seconds]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=1028</guid>
		<description><![CDATA[Have you ever got difficulty when you want to calculate the difference or the time duration between two dates by using PHP? For example, the first date is &#8217;2009-12-01 11:12:13&#8242;, and the second date is &#8217;2009-12-04 14:15:16&#8242;, so the difference or the time duration between this two dates will give a result as: &#8217;3 Day(s), [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever got difficulty when you want to calculate the difference or the time duration between two dates by using PHP? For example, the first date is &#8217;2009-12-01 11:12:13&#8242;, and the second date is &#8217;2009-12-04 14:15:16&#8242;, so the difference or the time duration between this two dates will give a result as: &#8217;3 Day(s), 3 Hour(s), 3 Minute(s), 3 Second(s).&#8217;. We will make the function in order to make you easy to implement this calculation in your PHP code. Please note that your date format must be in this order: &#8216;yyyy-MM-dd hh:mm:ss&#8217; as possible, otherwise, this function will not work properly, I guess. <span id="more-1028"></span></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
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #009933; font-style: italic;">/**
 * @author Masino Sinaga, http://www.openscriptsolution.com
 * @copyright December 14, 2009
 */</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// Display the result...</span>
<span style="color: #b1b100;">echo</span> Duration<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'2009-12-01 11:12:13'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'2009-12-04 14:15:16'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #000000; font-weight: bold;">function</span> Duration<span style="color: #009900;">&#40;</span><span style="color: #000088;">$parambegindate</span><span style="color: #339933;">,</span> <span style="color: #000088;">$paramenddate</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$begindate</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strtotime</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$parambegindate</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$enddate</span> <span style="color: #339933;">=</span> <span style="color: #990000;">strtotime</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$paramenddate</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$diff</span> <span style="color: #339933;">=</span> <span style="color: #990000;">intval</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$enddate</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #990000;">intval</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$begindate</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>                 
    <span style="color: #000088;">$diffday</span> <span style="color: #339933;">=</span> <span style="color: #990000;">intval</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">floor</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$diff</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">86400</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$modday</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$diff</span><span style="color: #339933;">%</span><span style="color:#800080;">86400</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$diffhour</span> <span style="color: #339933;">=</span> <span style="color: #990000;">intval</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">floor</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$modday</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">3600</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$diffminute</span> <span style="color: #339933;">=</span> <span style="color: #990000;">intval</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">floor</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$modday</span><span style="color: #339933;">%</span><span style="color:#800080;">3600</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">60</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$diffsecond</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$modday</span><span style="color: #339933;">%</span><span style="color:#800080;">60</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">return</span> <span style="color: #990000;">round</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$diffday</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; Day(s), &quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">round</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$diffhour</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; Hour(s), &quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">round</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$diffminute</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; Minute(s), &quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">round</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$diffsecond</span><span style="color: #339933;">,</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot; Second(s).&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2009%2F12%2F14%2Fhow-to-know-the-difference-or-time-duration-between-two-dates-in-php%2F&amp;title=How%20To%20Know%20the%20Difference%20or%20Time%20Duration%20Between%20Two%20Dates%20in%20PHP" id="wpa2a_4"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2009/12/14/how-to-know-the-difference-or-time-duration-between-two-dates-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sum Time with Format hh:mm:ss by Using PHP</title>
		<link>http://www.openscriptsolution.com/2009/10/14/sum-time-with-format-hh-mm-ss-by-using-php/</link>
		<comments>http://www.openscriptsolution.com/2009/10/14/sum-time-with-format-hh-mm-ss-by-using-php/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 01:09:01 +0000</pubDate>
		<dc:creator>Masino Sinaga</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[hh:mm:ss]]></category>
		<category><![CDATA[hours]]></category>
		<category><![CDATA[minutes]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[result]]></category>
		<category><![CDATA[seconds]]></category>
		<category><![CDATA[sum]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://www.openscriptsolution.com/?p=597</guid>
		<description><![CDATA[Have you ever got the difficulty when you want to sum the two time and display its result with format hours:minutes:seconds by using PHP? Well, now you don&#8217;t have to worry about it. This following code will give you the solution. Here is the code: 1 2 3 4 5 6 7 8 9 10 [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever got the difficulty when you want to sum the two time and display its result with format <strong>hours:minutes:seconds</strong> by using PHP? Well, now you don&#8217;t have to worry about it. This following code will give you the solution. <span id="more-597"></span></p>
<p>Here is the code:</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
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #009933; font-style: italic;">/**
 * @author Masino Sinaga, http://www.openscriptsolution.com
 * @copyright October 13, 2009
 */</span>
&nbsp;
<span style="color: #b1b100;">echo</span> sum_the_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'01:45:22'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'17:27:03'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  <span style="color: #666666; font-style: italic;">// this will give you a result: 19:12:25</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> sum_the_time<span style="color: #009900;">&#40;</span><span style="color: #000088;">$time1</span><span style="color: #339933;">,</span> <span style="color: #000088;">$time2</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #000088;">$times</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$time1</span><span style="color: #339933;">,</span> <span style="color: #000088;">$time2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$seconds</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$times</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$time</span><span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    <span style="color: #990000;">list</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$hour</span><span style="color: #339933;">,</span><span style="color: #000088;">$minute</span><span style="color: #339933;">,</span><span style="color: #000088;">$second</span><span style="color: #009900;">&#41;</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;">$time</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$seconds</span> <span style="color: #339933;">+=</span> <span style="color: #000088;">$hour</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">3600</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$seconds</span> <span style="color: #339933;">+=</span> <span style="color: #000088;">$minute</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">60</span><span style="color: #339933;">;</span>
    <span style="color: #000088;">$seconds</span> <span style="color: #339933;">+=</span> <span style="color: #000088;">$second</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: #990000;">floor</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$seconds</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">3600</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$seconds</span> <span style="color: #339933;">-=</span> <span style="color: #000088;">$hours</span><span style="color: #339933;">*</span><span style="color: #cc66cc;">3600</span><span style="color: #339933;">;</span>
  <span style="color: #000088;">$minutes</span>  <span style="color: #339933;">=</span> <span style="color: #990000;">floor</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$seconds</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;">$seconds</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: #666666; font-style: italic;">// return &quot;{$hours}:{$minutes}:{$seconds}&quot;;</span>
  <span style="color: #b1b100;">return</span> <span style="color: #990000;">sprintf</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'%02d:%02d:%02d'</span><span style="color: #339933;">,</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: #000088;">$seconds</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #666666; font-style: italic;">// Thanks to Patrick</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Enjoy it and have a nice code!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.openscriptsolution.com%2F2009%2F10%2F14%2Fsum-time-with-format-hh-mm-ss-by-using-php%2F&amp;title=Sum%20Time%20with%20Format%20hh%3Amm%3Ass%20by%20Using%20PHP" id="wpa2a_6"><img src="http://www.openscriptsolution.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.openscriptsolution.com/2009/10/14/sum-time-with-format-hh-mm-ss-by-using-php/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
	</channel>
</rss>
