<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1002885" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1002885</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/date-web-pages#comment-1012722</link>
    <description> &lt;p&gt;perfect!  thanks!&lt;/p&gt;
&lt;p&gt;Carole&lt;/p&gt;
 </description>
     <pubDate>Mon, 14 Feb 2000 15:51:00 +0000</pubDate>
 <dc:creator>tiny</dc:creator>
 <guid isPermaLink="false">comment 1012722 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/date-web-pages#comment-1012721</link>
    <description> &lt;p&gt;glad the script is of help.The time is on most viewer&#039;s browser if they are using win95 is at the bottom right-hand corner and in my opinion it&#039;s not needed unless you would want to display two different time.&lt;/p&gt;
&lt;p&gt;For more on Javascript, visit: &lt;a href=&quot;http://javascript.internet.com&quot; class=&quot;bb-url&quot;&gt;http://javascript.internet.com&lt;/a&gt;&lt;br /&gt;
You can find lots of scripts of you requirements.&lt;/p&gt;
&lt;p&gt;Also please be aware that when you are using Javascript, if the visitor&#039;s browser for Javascript is not enable, the visitor will not be able to see it.    &lt;/p&gt;
&lt;p&gt;NSS &lt;a href=&quot;http://www.unitronics.com&quot; class=&quot;bb-url&quot;&gt;http://www.unitronics.com&lt;/a&gt;  &lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 14 February 2000).]&lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 14 February 2000).]&lt;/p&gt;
 </description>
     <pubDate>Mon, 14 Feb 2000 15:43:00 +0000</pubDate>
 <dc:creator>NSS</dc:creator>
 <guid isPermaLink="false">comment 1012721 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/date-web-pages#comment-1012720</link>
    <description> &lt;p&gt;Thank you all so much.  You&#039;ve been VERY helpful.  Glad I came here for this.  &lt;/p&gt;
&lt;p&gt;Double OK ~ the format is exactly what I want.&lt;/p&gt;
&lt;p&gt;I do believe I will go with NSS&#039;s script, only because I&#039;d like my customers to feel that it&#039;s personalized to their time zone.&lt;/p&gt;
&lt;p&gt;Do you think it should show the current time?  Of course, I don&#039;t have a clue how to do that, but if it&#039;s not a LOT more code, do you think it would be beneficial?&lt;/p&gt;
&lt;p&gt;In other words, do you have the time on your sites?&lt;/p&gt;
&lt;p&gt;thanks again!&lt;br /&gt;
Carole&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;em&gt;up to&lt;/em&gt;&lt;strong&gt; 25% discount on knives, cutlery  &amp;amp; sharpeners: &lt;/strong&gt; &lt;a href=&quot;http://2kcut.com&quot; class=&quot;bb-url&quot;&gt;Millennium Cutlery&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 14 Feb 2000 15:08:00 +0000</pubDate>
 <dc:creator>tiny</dc:creator>
 <guid isPermaLink="false">comment 1012720 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/date-web-pages#comment-1012719</link>
    <description> &lt;p&gt;Try this script:&lt;/p&gt;
&lt;p&gt;&amp;lt;SCRIPT LANGUAGE=Javascript&amp;gt;&lt;br /&gt;
calendar = new Date();&lt;br /&gt;
day = calendar.getDay();&lt;br /&gt;
month = calendar.getMonth();&lt;br /&gt;
date = calendar.getDate();&lt;br /&gt;
year = calendar.getYear();&lt;br /&gt;
if (year&amp;lt; 100)  year = 1900 + year;&lt;br /&gt;
cent = parseInt(year/100);&lt;br /&gt;
g = year % 19;&lt;br /&gt;
k = parseInt((cent - 17)/25);&lt;br /&gt;
i = (cent - parseInt(cent/4) - parseInt((cent - k)/3) + 19*g + 15) % 30;&lt;br /&gt;
i = i - parseInt(i/28)*(1 - parseInt(i/28)*parseInt(29/(i+1))*parseInt((21-g)/11));&lt;br /&gt;
j = (year + parseInt(year/4) + i + 2 - cent + parseInt(cent/4)) % 7;&lt;br /&gt;
l = i - j;&lt;br /&gt;
emonth = 3 + parseInt((l + 40)/44);&lt;br /&gt;
edate = l + 28 - 31*parseInt((emonth/4));&lt;br /&gt;
emonth--;&lt;br /&gt;
var dayname = new Array (&quot;Sunday&quot;, &quot;Monday&quot;, &quot;Tuesday&quot;, &quot;Wednesday&quot;, &quot;Thursday&quot;, &quot;Friday&quot;, &quot;Saturday&quot;);&lt;br /&gt;
var monthname =&lt;br /&gt;
new Array (&quot;January&quot;,&quot;February&quot;,&quot;March&quot;,&quot;April&quot;,&quot;May&quot;,&quot;June&quot;,&quot;July&quot;,&quot;August&quot;,&quot;September&quot;,&quot;October&quot;,&quot;November&quot;,&quot;December&quot; );&lt;br /&gt;
document.write(dayname[day] + &quot;, &quot;);&lt;br /&gt;
document.write(monthname[month] + &quot; &quot;);&lt;/p&gt;
&lt;p&gt;if (date&amp;lt; 10) document.write(&quot;0&quot; + date + &quot;, &quot;);&lt;br /&gt;
	else document.write(date + &quot;, &quot;);&lt;br /&gt;
document.write(year + &quot;    &amp;lt;font color=000000&amp;gt;&quot;);&lt;br /&gt;
document.write(&quot;&amp;lt;/font&amp;gt;&quot;);&lt;br /&gt;
&amp;lt;/SCRIPT&amp;gt;&lt;/p&gt;
&lt;p&gt;Control the color,font size or bold like this:&lt;/p&gt;
&lt;p&gt;&amp;lt;FONT COLOR=&quot;#FF0000&quot; FACE=&quot;ARIAL&quot; SIZE=2 &amp;gt;&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
&amp;lt;SCRIPT&amp;gt;&lt;br /&gt;
the code&lt;br /&gt;
&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&amp;lt;/FONT&amp;gt;&lt;/p&gt;
&lt;p&gt;This script will give the date, month and year on the user&#039;s browser when they login to your site.(based on the user&#039;s cpu data a.m. or p.m.) &lt;/p&gt;
&lt;p&gt;NSS &lt;a href=&quot;http://www.unitronics.com&quot; class=&quot;bb-url&quot;&gt;http://www.unitronics.com&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 14 February 2000).]&lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 14 February 2000).]&lt;/p&gt;
&lt;p&gt;[This message has been edited by NSS (edited 14 February 2000).]&lt;/p&gt;
 </description>
     <pubDate>Mon, 14 Feb 2000 11:42:00 +0000</pubDate>
 <dc:creator>NSS</dc:creator>
 <guid isPermaLink="false">comment 1012719 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/date-web-pages#comment-1012718</link>
    <description> &lt;p&gt;if you want it to show the day and month that you are currently in, this following code works&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;code:&lt;/p&gt;
&lt;pre&gt;&amp;lt;SCRIPT language=&quot;JavaScript&quot;&amp;gt;
&amp;lt;!--
// Drag the item from the left window and
// drop it here. Or click the right mouse button
// and select &#039;Insert to Script&#039; from the popup menu.
// The code is inserted at the current
// cursor position.
var now = new Date();
var yr  = now.getYear();
var mn  = now.getMonth() + 1;
var dt  = now.getDate();
var dy  = now.getDay();

var fyr = (yr &amp;gt; 99) ? fyr = yr : 1900 + yr;   // Year 2000 processing

var dys = new Array(&quot;Sunday&quot;,&quot;Monday&quot;,&quot;Tuesday&quot;,&quot;Wednesday&quot;,&quot;Thursday&quot;,&quot;Friday&quot;,&quot;Saturday&quot;);
var dy = dys[dy];
var mns = new Array(&quot;January&quot;,&quot;February&quot;,&quot;March&quot;,&quot;April&quot;,&quot;May&quot;,&quot;June&quot;,&quot;July&quot;,&quot;August&quot;,&quot;September&quot;,&quot;October&quot;,&quot;November&quot;,&quot;December&quot;);
var mn = mns[mn-1];

var msg  = dy + &quot;, &quot; + mn + &quot; &quot; + dt + &quot;, &quot; + fyr;

document.write(msg + &quot; &quot; + &quot;&amp;lt;BR&amp;gt;&quot;);

//--&amp;gt;
&amp;lt;/SCRIPT&amp;gt;[/code]

it comes up in this format:
Monday, February 14, 2000 
i hope its the one you want!!

------------------
&lt;a href=&quot;http://www.doubleok.com&quot; class=&quot;bb-url&quot;&gt;&lt;strong&gt;Join The Rest Of The Webmasters On The Net!!&lt;/strong&gt;&lt;/a&gt; 
  
Contact Me:
 &lt;A href=&quot;mailto:webmaster@doubleok.com
&quot;&gt;webmaster@doubleok.com
&lt;/a&gt; 
ICQ: 52790444 &lt;/pre&gt;&lt;/blockquote&gt;</description>
     <pubDate>Mon, 14 Feb 2000 08:59:00 +0000</pubDate>
 <dc:creator />
 <guid isPermaLink="false">comment 1012718 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/date-web-pages#comment-1012717</link>
    <description> &lt;p&gt;&lt;img src=&quot;http://www.webmaster-forums.com/ubb/smile.gif&quot; alt=&quot;&quot; class=&quot;bb-image&quot; /&gt; It&#039;s the local time where your SERVER is, not you.&lt;/p&gt;
&lt;p&gt;I don&#039;t know how to alter it, maybe with a -howmany hours.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Suzanne&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;a href=&quot;http://www.zerocattle.com&quot; class=&quot;bb-url&quot;&gt;Zero Cattle&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.inforamp.net/~suzanne/&quot; class=&quot;bb-url&quot;&gt;Suzanne&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.inforamp.net/~suzanne/index/celtic.html&quot; class=&quot;bb-url&quot;&gt;Tables DeMystified&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Mon, 14 Feb 2000 05:42:00 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1012717 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
