<?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>KISPHP Tutorials &#187; PHP</title>
	<atom:link href="http://www.kisphp.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kisphp.com</link>
	<description>Keep It Simple PHP</description>
	<lastBuildDate>Fri, 12 Feb 2010 21:49:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Http Codes explained</title>
		<link>http://www.kisphp.com/http-codes-explained/</link>
		<comments>http://www.kisphp.com/http-codes-explained/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 08:14:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Basic]]></category>
		<category><![CDATA[Default]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[codes]]></category>
		<category><![CDATA[explain]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[http]]></category>

		<guid isPermaLink="false">http://www.kisphp.com/?p=193</guid>
		<description><![CDATA[



HTTP CODES 100-101



100
Continue
Tells the client that the first part of the request has been received and that it should continue with the rest of the request or ignore if the request has been fulfilled.


101
Switching Protocols
Tells the client that the server will switch protocols to that specified in the Upgrade message header field during the current [...]]]></description>
		<wfw:commentRss>http://www.kisphp.com/http-codes-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View hidden files with Zend Studio 6</title>
		<link>http://www.kisphp.com/view-hidden-files-with-zend-studio-6/</link>
		<comments>http://www.kisphp.com/view-hidden-files-with-zend-studio-6/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 07:44:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[zend]]></category>
		<category><![CDATA[zend studio]]></category>

		<guid isPermaLink="false">http://www.kisphp.com/?p=187</guid>
		<description><![CDATA[I usually code with Zend Studio 5.5, but since has been released the 6&#8242;th version (and now the 7&#8242;th Beta), I must use the 6&#8242;th version. Honestly, I don&#8217;t like this version. For me, ZS 5.5 is the best, but I have to work with this too.
Ok, now let&#8217;s get to the point. I have [...]]]></description>
		<wfw:commentRss>http://www.kisphp.com/view-hidden-files-with-zend-studio-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seconds to Hour : minutes : seconds</title>
		<link>http://www.kisphp.com/seconds-to-hour-minutes-seconds/</link>
		<comments>http://www.kisphp.com/seconds-to-hour-minutes-seconds/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 09:13:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[floor]]></category>
		<category><![CDATA[hour]]></category>
		<category><![CDATA[minute]]></category>
		<category><![CDATA[second]]></category>
		<category><![CDATA[transform]]></category>

		<guid isPermaLink="false">http://www.kisphp.com/?p=12</guid>
		<description><![CDATA[Seconds to Hour : minutes : seconds
function sec_to_time($sec)
{
$hr = 0;
$min = 0;
$time = array();
while (floor($sec/3600) &#62; 0)
{
$hr++;
$sec-=3600;
}
while (floor($sec/60) &#62; 0)
{
$min++;
$sec-=60;
}
$time['h'] = ($hr &#60; 10) ? "0".$hr : $hr;
$time['m'] = ($min &#60; 10) ? "0".$min : $min;
$time['s'] = ($sec &#60; 10) ? "0".$sec : $sec;
return $time;
}

Example:
$ora = sec_to_time(1400); // 1400 seconds
echo $ora['h']." : ".$ora['m']." : ".$ora['s'];
// 00 : 23 : 20
// that means 23 minutes and 20 seconds

]]></description>
		<wfw:commentRss>http://www.kisphp.com/seconds-to-hour-minutes-seconds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
