<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1023643" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1023643</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/formatting-time-value#comment-1145284</link>
    <description> &lt;p&gt;Wait...there was somethinig about PHP that I thought and read about...and I was right!?!? No way....&lt;/p&gt;
&lt;p&gt;Lol, yea it works fine.  Thanks.&lt;/p&gt;
 </description>
     <pubDate>Thu, 05 Feb 2004 00:31:03 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1145284 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/formatting-time-value#comment-1145227</link>
    <description> &lt;p&gt;Well, fancy that, lol. Serves me right for posting on a Saturday and not paying attention. Did you get the problem solved?&lt;/p&gt;
 </description>
     <pubDate>Sun, 01 Feb 2004 05:08:07 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1145227 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/formatting-time-value#comment-1145222</link>
    <description> &lt;p&gt;if there is no time format function...&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: TIME_FORMAT(time,format)&lt;br /&gt;
    This is used like the DATE_FORMAT() function, but the format string may contain only those format specifiers that handle hours, minutes, and seconds. Other specifiers produce a NULL value or 0. If the time value contains an hour part that is greater than 23, the %H and %k hour format specifiers produce a value larger than the usual range of 0..23. The other hour format specifiers produce the hour value modulo 12:&lt;/p&gt;
&lt;p&gt;mysql&amp;gt; SELECT TIME_FORMAT(&#039;100:00:00&#039;, &#039;%H %k %h %I %l&#039;);&lt;br /&gt;
        -&amp;gt; &#039;100 100 04 04 4&#039;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;(same document you posted)&lt;/p&gt;
&lt;p&gt;thanks.&lt;/p&gt;
 </description>
     <pubDate>Sun, 01 Feb 2004 01:17:19 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1145222 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/formatting-time-value#comment-1145215</link>
    <description> &lt;p&gt;&lt;a href=&quot;http://www.mysql.com/doc/en/Date_and_time_functions.html&quot; class=&quot;bb-url&quot;&gt;http://www.mysql.com/doc/en/Date_and_time_functions.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;$sql &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;mysql_query&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;(\&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;SELECT DATE_FORMAT(time, &#039;%l:%i %p&#039;)\&quot;);&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;There is no TIME_FORMAT() function.&lt;/p&gt;
&lt;p&gt;Of course, if your field isn&#039;t a TIME, DATE, DATETIME, or TIMESTAMP field, you may have issues.&lt;/p&gt;
 </description>
     <pubDate>Sat, 31 Jan 2004 23:26:54 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1145215 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/formatting-time-value#comment-1145211</link>
    <description> &lt;p&gt;Not exactly sure if this works but give it a shot:&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;$sql &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= \&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;SELECT DATE_FORMAT(time,&#039;%b %D, %Y at %T hrs&#039;)&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;
hope it helps...&lt;/p&gt;
&lt;p&gt;ohh i think this should be&lt;br /&gt;
:&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;$sql &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= \&lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;SELECT DATE_FORMAT(time,&#039;%T hrs&#039;)&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 31 Jan 2004 21:27:20 +0000</pubDate>
 <dc:creator>xxgeek</dc:creator>
 <guid isPermaLink="false">comment 1145211 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
