/    Sign up×
Community /Pin to ProfileBookmark

Im looking for a script that gets the GMT so I can display times around the world on my website.
All the scripts I see get the computers time, which if you are in different time zones displays the wrong times…
Anyone have anything like this?

This one is cool but if you change your computer clock to your region, all the times are wrong!

[url]http://www.pacom.mil/staff/at/athome.shtml[/url]

Thanks!

to post a comment
JavaScript

24 Comments(s)

Copy linkTweet thisAlerts:
@phpnoviceMar 08.2006 — JavaScript has no access to the server's time. So, for a JavaScript-only solution, you are stuck with using the time zone settings on the visitor's computer. The following, though, will work for the eleven time zones displayed even if the visitor's time zone is not set correctly on their computer -- just as long as their time is set correctly or almost correctly.
[code=html]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Time Zones</title>
<script type="text/javascript">
<!--//
var z = new Array();
var zones = new Array(
"Greenwich Mean Time",
"Azores Time",
"Mid-Atlantic Time",
"Newfoundland Time",
"Atlantic Standard Time",
"Eastern Standard Time",
"Central Standard Time",
"Mountain Standard Time",
"Pacific Standard Time",
"Alaska Standard Time",
"Hawaii Standard Time"
); // no comma after last entry above
function timeZone(ofs) {
var curDate = new Date();
var ss = curDate.getUTCSeconds();
ss = (ss<10)?"0"+ss:ss;
var mm = curDate.getUTCMinutes();
mm = (mm<10)?"0"+mm:mm;
var hh = curDate.getUTCHours();
hh -= ofs;
hh = (hh<0)?hh+24:hh;
ss += (hh > 11) ? " PM" : " AM";
hh -= (hh > 12) ? 12 : 0;
hh = (hh<1)?12:((hh<10)?"0"+hh:hh);
var str = "<p>";
str += 'Time: '+hh+':'+mm+':'+ss+' — (-'+ofs+') '+zones[ofs];
str += "</p>";
z[ofs].innerHTML = str;
window.setTimeout("timeZone("+ofs+")", 1000);
}
function startClocks(cnt) {
var i, j=0;
for (i=0; i<cnt; i++) {
z[i] = document.getElementById("zone"+i);
window.setTimeout("timeZone("+i+")", j);
j += 50;
}
return true;
}
window.onload = function() {
return startClocks(11);
}
//-->
</script>
</head>

<body>
<h1>Multi-TimeZone Clocks</h1>
<div id="zone0"><p>Time:</p></div>
<div id="zone1"><p>Time:</p></div>
<div id="zone2"><p>Time:</p></div>
<div id="zone3"><p>Time:</p></div>
<div id="zone4"><p>Time:</p></div>
<div id="zone5"><p>Time:</p></div>
<div id="zone6"><p>Time:</p></div>
<div id="zone7"><p>Time:</p></div>
<div id="zone8"><p>Time:</p></div>
<div id="zone9"><p>Time:</p></div>
<div id="zone10"><p>Time:</p></div>
</body>
</html>
[/code]
Copy linkTweet thisAlerts:
@ranosbauthorMar 08.2006 — Yes, you are correct, the time zone on my computer was wrong even though the clock was correct. Upon changing to the correct zone, that website is correct...

My bust~ so let me turn this around as

For a nice world time clock grab the script time.js from the site:http://www.pacom.mil/

But the viewing computer HAS to be set correctly
Copy linkTweet thisAlerts:
@phpnoviceMar 08.2006 — But the viewing computer HAS to be set correctly[/QUOTE]
Not for the script I just posted. The visitor's computer can have the wrong time zone and the script I posted will still display the correct times for those zones.
Copy linkTweet thisAlerts:
@ranosbauthorMar 08.2006 — your script box shows nothing...
Copy linkTweet thisAlerts:
@phpnoviceMar 08.2006 — What "script box"?
Copy linkTweet thisAlerts:
@phpnoviceMar 08.2006 — I re-checked what I posted and found it to be working perfectly. There was a problem with the DOCTYPE specification though, and I have fixed that in the original post. Perhaps that was giving you problems? What browser and version did you try it in? I've tried it in IE and Firefox without problems.
Copy linkTweet thisAlerts:
@ranosbauthorMar 08.2006 — This is the first time I have seen this;

but, where it says HTML Code: and a box? Theres nothing visible in the box on my browser...

IE SP2 WinXP
Copy linkTweet thisAlerts:
@phpnoviceMar 08.2006 — Wow! That is strange. I use Windows XP SP2 and IE6, also. Here it is again -- in a CODE box:
<i>
</i>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd"&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Language" content="en-us"&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;title&gt;Time Zones&lt;/title&gt;
&lt;script type="text/javascript"&gt;
&lt;!--//
var z = new Array();
var zones = new Array(
"Greenwich Mean Time",
"Azores Time",
"Mid-Atlantic Time",
"Newfoundland Time",
"Atlantic Standard Time",
"Eastern Standard Time",
"Central Standard Time",
"Mountain Standard Time",
"Pacific Standard Time",
"Alaska Standard Time",
"Hawaii Standard Time"
); // no comma after last entry above
function timeZone(ofs) {
var curDate = new Date();
var ss = curDate.getUTCSeconds();
ss = (ss&lt;10)?"0"+ss:ss;
var mm = curDate.getUTCMinutes();
mm = (mm&lt;10)?"0"+mm:mm;
var hh = curDate.getUTCHours();
hh -= ofs;
hh = (hh&lt;0)?hh+24:hh;
ss += (hh &gt; 11) ? " PM" : " AM";
hh -= (hh &gt; 12) ? 12 : 0;
hh = (hh&lt;1)?12:((hh&lt;10)?"0"+hh:hh);
var str = "&lt;p&gt;";
str += 'Time: '+hh+':'+mm+':'+ss+' — (-'+ofs+') '+zones[ofs];
str += "&lt;/p&gt;";
z[ofs].innerHTML = str;
window.setTimeout("timeZone("+ofs+")", 1000);
}
function startClocks(cnt) {
var i, j=0;
for (i=0; i&lt;cnt; i++) {
z[i] = document.getElementById("zone"+i);
window.setTimeout("timeZone("+i+")", j);
j += 50;
}
return true;
}
window.onload = function() {
return startClocks(11);
}
//--&gt;
&lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;h1&gt;Multi-TimeZone Clocks&lt;/h1&gt;
&lt;div id="zone0"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;div id="zone1"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;div id="zone2"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;div id="zone3"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;div id="zone4"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;div id="zone5"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;div id="zone6"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;div id="zone7"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;div id="zone8"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;div id="zone9"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;div id="zone10"&gt;&lt;p&gt;Time:&lt;/p&gt;&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
Copy linkTweet thisAlerts:
@kR4_MRMar 08.2006 — I butchered you're code to get the other side of the world(good work BTW)

since I am not really much good at coding, could someone else plz get the 2 working together
[CODE]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Time Zones</title>
<script type="text/javascript">
<!--//
var z = new Array();
var zones = new Array(
"Greenwich Mean Time",
"GMT+1",
"GMT+2",
"GMT+3",
"GMT+4",
"GMT+5",
"GMT+6",
"GMT+7",
"Au WA time",
"add 1/2hr for Au CST",
"Au EST",
"Au EDST",
"NZ DST"
); // no comma after last entry above
function timeZone(ofs) {
var curDate = new Date();
var ss = curDate.getUTCSeconds();
ss = (ss<10)?"0"+ss:ss;
var mm = curDate.getUTCMinutes();
mm = (mm<10)?"0"+mm:mm;
var hh = curDate.getUTCHours();
hh += ofs;
hh = (hh<0)?hh+24:hh;
ss += (hh > 11) ? " PM" : " AM";
hh -= (hh > 12) ? 12 : 0;
hh = (hh<1)?12:((hh<10)?"0"+hh:hh);
var str = "<p>";
str += 'Time: '+hh+':'+mm+':'+ss+' — (+'+ofs+') '+zones[ofs];
str += "</p>";
z[ofs].innerHTML = str;
window.setTimeout("timeZone("+ofs+")", 1000);
}
function startClocks(cnt) {
var i, j=0;
for (i=0; i<cnt; i++) {
z[i] = document.getElementById("zone"+i);
window.setTimeout("timeZone("+i+")", j);
j += 50;
}
return true;
}
window.onload = function() {
return startClocks(13);
}
//-->
</script>
</head>

<body>
<h1>Multi-TimeZone Clocks</h1>
<div id="zone0"><p>Time:</p></div>
<div id="zone1"><p>Time:</p></div>
<div id="zone2"><p>Time:</p></div>
<div id="zone3"><p>Time:</p></div>
<div id="zone4"><p>Time:</p></div>
<div id="zone5"><p>Time:</p></div>
<div id="zone6"><p>Time:</p></div>
<div id="zone7"><p>Time:</p></div>
<div id="zone8"><p>Time:</p></div>
<div id="zone9"><p>Time:</p></div>
<div id="zone10"><p>Time:</p></div>
<div id="zone11"><p>Time:</p></div>
<div id="zone12"><p>Time:</p></div>
</body>
</html>[/CODE]
Copy linkTweet thisAlerts:
@ranosbauthorMar 08.2006 — Thanks PHPNovice, looking into your script...
Copy linkTweet thisAlerts:
@phpnoviceMar 09.2006 — OK, here is a side-by-side of both east and west:
[code=html]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Time Zones</title>
<style type="text/css">
<!--
form {
border: 0 solid #808080;
margin: 0;
padding: 0;
}
img {
border: 0 solid #808080;
display: inline;
vertical-align: bottom;
}
table {
border: 0 solid #808080;
border-collapse: collapse;
margin: 0;
padding: 0;
}
tr,div {
border: 0 solid #808080;
margin: 0;
padding: 0;
}
td,th {
border: 0 solid #808080;
font-family: 'Times New Roman', serif;
font-size: 12pt;
margin: 0;
padding-bottom: 2px;
padding-left: 10px;
padding-right: 10px;
padding-top: 2px;
text-align: left;
vertical-align: top;
}
th {
font-size: 24pt;
line-height: 36pt;
text-align: center;
vertical-align: bottom;
}
-->
</style>
<script type="text/javascript">
<!--//
var zones = new Array(
new Array("Greenwich Mean Time", "Greenwich Mean Time"),
new Array("Azores Time", "Berlin, Paris, Warsaw"),
new Array("Mid-Atlantic Time", "Athens, Cairo, Jerusalem"),
new Array("Newfoundland Time", "Baghdad, Moscow, Nairobi"),
new Array("Atlantic Standard Time", "Dhabi, Muscat, Baku"),
new Array("Eastern Standard Time", "Ekaterinburg, Islamabad, Karachi"),
new Array("Central Standard Time", "Almaty, Dhaka, Rangoon"),
new Array("Mountain Standard Time", "Bangkok, Hanoi, Krasnoyarsk"),
new Array("Pacific Standard Time", "Beijing, Kuala Lumpur, Taipei"),
new Array("Alaska Standard Time", "Osaka, Seoul, Yakutsk"),
new Array("Hawaii Standard Time", "Brisbane, Guam, Vladivostok"),
new Array("Midway Island, Samoa", "Magadan, Solomon Islands"),
new Array("Internation Date-Line West", "Aukland, Fiji, Marshall Is.")
); // no comma after last entry above
//
function timeZone(ofs, idx) {
var curDate = new Date();
var ss = curDate.getUTCSeconds();
ss = (ss<10)?"0"+ss:ss;
var mm = curDate.getUTCMinutes();
mm = (mm<10)?"0"+mm:mm;
var hh = curDate.getUTCHours();
if(idx==0) hh -= ofs;
else hh += ofs;
hh = (hh<0)?hh+24:hh;
ss += (hh > 11) ? " PM" : " AM";
hh -= (hh > 12) ? 12 : 0;
hh = (hh<1)?12:((hh<10)?"0"+hh:hh);
var str = "<p>";
str += hh+':'+mm+':'+ss+' — ('+((idx==0)?'-':'+')+ofs+') '+zones[ofs][idx];
str += "</p>";
ztbl.rows[ofs+1].cells[idx].innerHTML = str;
window.setTimeout("timeZone("+ofs+", "+idx+")", 1000);
}
var ztbl = null;
function startClocks(cnt) {
ztbl = document.getElementById("zone_table");
var i, j=0;
for (i=0; i<cnt; i++) {
window.setTimeout("timeZone("+i+", 0)", j);
j += 50;
}
for (i=0; i<cnt; i++) {
window.setTimeout("timeZone("+i+", 1)", j);
j += 50;
}
return true;
}
window.onload = function() {
return startClocks(13);
}
//-->
</script>
</head>

<body>
<table id="zone_table">
<tr><th colspan="2">Multi-TimeZone Clocks</th></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td><td>&nbsp;</td></tr>
</table>
<p>
<a href="http://validator.w3.org/check?uri=referer"><img
src="../images/valid_html.bmp" alt="Valid HTML 4.01!"
style="border:0px none;" width="88" height="31"></a>
</p>
</body>
</html>
[/code]
Copy linkTweet thisAlerts:
@kR4_MRMar 09.2006 — Awesome! thanks, my basic programming teacher thinks this is an easy project since we've been going for 4 whole weeks ?
Copy linkTweet thisAlerts:
@phpnoviceMar 09.2006 — I did the part I first posted about a year after I first started teaching myself JavaScript. However, that is because I concentrated on form handling at first -- I had my father-in-law's website order page to get working correctly. :p
Copy linkTweet thisAlerts:
@kR4_MRMar 09.2006 — Oh god, It broke itself!

I dunno what's happened but it's gone out by 12 hours and alot of times that should be AM are PM!

I think it might be the windows updates I just got ?
Copy linkTweet thisAlerts:
@phpnoviceMar 09.2006 — Sounds like you tried to combine these two loops into a single loop:
<i>
</i> for (i=0; i&lt;cnt; i++) {
window.setTimeout("timeZone("+i+", 0)", j);
j += 50;
}
for (i=0; i&lt;cnt; i++) {
window.setTimeout("timeZone("+i+", 1)", j);
j += 50;
}
Copy linkTweet thisAlerts:
@James_GatkaMar 09.2006 — 
-----
Copy linkTweet thisAlerts:
@kR4_MRMar 09.2006 — nope, straight copy+paste from yours phpnovice, I even checked to make sure the loops were in place ?

It did work before, I swear, I even tried recopying it.
Copy linkTweet thisAlerts:
@kR4_MRMar 10.2006 — OK, it's randomly working fine???
Copy linkTweet thisAlerts:
@phpnoviceMar 10.2006 — What operating system, browser, and version are you testing with?
Copy linkTweet thisAlerts:
@kR4_MRMar 10.2006 — XP Firefox1.5

probably just a glitch
Copy linkTweet thisAlerts:
@phpnoviceMar 10.2006 — Well, I don't know what is going on. I just tried it in XP Pro using Firefox 1.0.7 and it functions just fine.
Copy linkTweet thisAlerts:
@ranosbauthorMar 10.2006 — PhpNovice,

Outstanding job..Hope to see more of your posts in the future...
Copy linkTweet thisAlerts:
@kR4_MRMar 10.2006 — was going on, it's all better now, just windows being stupud I guess ?
Copy linkTweet thisAlerts:
@phpnoviceMar 10.2006 — Having now tried my code in Firefox, I made a couple of adjustments (removed paragraph tags) for [COLOR=Blue]display[/COLOR] purposes. I also made an adjustment for [COLOR=Red]readability[/COLOR]/[COLOR=Red]understandability[/COLOR] of the code and removed the extra CSS.
<i>
</i>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd"&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Language" content="en-us"&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;title&gt;Time Zones&lt;/title&gt;
&lt;style type="text/css"&gt;
&lt;!--
table {
border: 0 solid #808080;
border-collapse: collapse;
margin: 0;
padding: 0;
}
tr,div {
border: 0 solid #808080;
margin: 0;
padding: 0;
}
td,th {
border: 0 solid #808080;
font-family: 'Times New Roman', serif;
font-size: 12pt;
margin: 0;
padding-bottom: 2px;
padding-left: 10px;
padding-right: 10px;
padding-top: 2px;
text-align: left;
vertical-align: top;
}
th {
font-size: 24pt;
line-height: 36pt;
text-align: center;
vertical-align: bottom;
}
--&gt;
&lt;/style&gt;
&lt;script type="text/javascript"&gt;
&lt;!--//
var zones = new Array(
new Array("Greenwich Mean Time", "Greenwich Mean Time"),
new Array("Azores Time", "Berlin, Paris, Warsaw"),
new Array("Mid-Atlantic Time", "Athens, Cairo, Jerusalem"),
new Array("Newfoundland Time", "Baghdad, Moscow, Nairobi"),
new Array("Atlantic Standard Time", "Dhabi, Muscat, Baku"),
new Array("Eastern Standard Time", "Ekaterinburg, Islamabad, Karachi"),
new Array("Central Standard Time", "Almaty, Dhaka, Rangoon"),
new Array("Mountain Standard Time", "Bangkok, Hanoi, Krasnoyarsk"),
new Array("Pacific Standard Time", "Beijing, Kuala Lumpur, Taipei"),
new Array("Alaska Standard Time", "Osaka, Seoul, Yakutsk"),
new Array("Hawaii Standard Time", "Brisbane, Guam, Vladivostok"),
new Array("Midway Island, Samoa", "Magadan, Solomon Islands"),
new Array("International Date-Line West", "Aukland, Fiji, Marshall Is.")
); // no comma after last entry above
var ztbl = null, [COLOR=Red]west = 0[/COLOR], [COLOR=Red]east = 1[/COLOR];
//
function timeZone(ofs, [COLOR=Red]dir[/COLOR]) {
var str, curDate = new Date();
var ss = curDate.getUTCSeconds();
ss = (ss&lt;10)?"0"+ss:ss;
var mm = curDate.getUTCMinutes();
mm = (mm&lt;10)?"0"+mm:mm;
var hh = curDate.getUTCHours();
if([COLOR=Red]dir==west[/COLOR]) hh -= ofs;
else hh += ofs;
hh = (hh&lt;0)?hh+24:hh;
ss += (hh &gt; 11) ? " PM" : " AM";
hh -= (hh &gt; 12) ? 12 : 0;
hh = (hh&lt;1)?12:((hh&lt;10)?"0"+hh:hh);
str = hh+':'+mm+':'+ss+' — ('+(([COLOR=Red]dir==west[/COLOR])?'-':'+')+ofs+') '+zones[ofs][[COLOR=Red]dir[/COLOR]];
ztbl.rows[ofs+1].cells[[COLOR=Red]dir[/COLOR]].innerHTML = str;
window.setTimeout("timeZone("+ofs+", "+[COLOR=Red]dir[/COLOR]+")", 1000);
}
function startClocks(cnt) {
ztbl = document.getElementById("zone_table");
var i, j=0;
for (i=0; i&lt;cnt; i++) {
window.setTimeout("timeZone("+i+", [COLOR=Red]west[/COLOR])", j);
j += 50;
}
for (i=0; i&lt;cnt; i++) {
window.setTimeout("timeZone("+i+", [COLOR=Red]east[/COLOR])", j);
j += 50;
}
return true;
}
window.onload = function() {
return startClocks(13);
}
//--&gt;
&lt;/script&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;table id="zone_table"&gt;
&lt;tr&gt;&lt;th colspan="2"&gt;[COLOR=Blue]West —[/COLOR] Multi-TimeZone Clocks [COLOR=Blue]— East[/COLOR]&lt;/th&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;
&lt;a href="http://validator.w3.org/check?uri=referer"&gt;&lt;img
src="../images/valid_html.bmp" alt="Valid HTML 4.01!"
style="border:0px none;" width="88" height="31"&gt;&lt;/a&gt;
&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
×

Success!

Help @ranosb spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.17,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @nearjob,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,
)...