Dev Shed Lounge
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsOtherDev Shed Lounge

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 19th, 2001, 09:25 AM
mydowns mydowns is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2001
Posts: 5 mydowns User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
hello

hello
Code:
hello

Reply With Quote
  #2  
Old July 19th, 2001, 10:05 AM
prospero prospero is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2001
Location: Lancaster, England
Posts: 33 prospero User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 12
hello

__________________
" the rarer action is in virtue than in vengeance... "

Reply With Quote
  #3  
Old July 19th, 2001, 10:30 AM
mydowns mydowns is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2001
Posts: 5 mydowns User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0

Reply With Quote
  #4  
Old July 28th, 2001, 05:03 PM
Adrian2 Adrian2 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2000
Location: London, England
Posts: 251 Adrian2 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 14
PHP Code:
<?php

echo "<h1>Hello.</h1>";

?>
__________________
Please don't visit my lame personal website, www.webhamster.co.uk. Half the time it doesn't even work!

Reply With Quote
  #5  
Old July 28th, 2001, 08:38 PM
sLiPkNoT rUlEz sLiPkNoT rUlEz is offline
PHP Coder
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2001
Location: Ontario
Posts: 66 sLiPkNoT rUlEz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 13
Send a message via ICQ to sLiPkNoT rUlEz Send a message via AIM to sLiPkNoT rUlEz Send a message via Yahoo to sLiPkNoT rUlEz
PHP Code:
<?php

$ary 
= array("hi"=>"hello","?"=>"!");
echo 
strtr("hi?",$ary);

?>
__________________
Click here and wait. It's a kewl effect, trust me.

Reply With Quote
  #6  
Old July 29th, 2001, 12:21 AM
mydowns mydowns is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2001
Posts: 5 mydowns User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Code:
<HTML> 
<HEAD> 
<TITLE>Date</TITLE> 
<SCRIPT LANGUAGE="JavaScript"> 
<!-- 
function MakeArray(n) { 
this.length = n 
return this 
} 
monthNames = new MakeArray(12) 
monthNames[1] = "January" 
monthNames[2] = "February" 
monthNames[3] = "March" 
monthNames[4] = "April" 
monthNames[5] = "May" 
monthNames[6] = "June" 
monthNames[7] = "July" 
monthNames[8] = "August" 
monthNames[9] = "September" 
monthNames[10] = "October" 
monthNames[11] = "November" 
monthNames[12] = "December" 
dayNames = new MakeArray(7) 
dayNames[1] = "Sunday" 
dayNames[2] = "Monday" 
dayNames[3] = "Tuesday" 
dayNames[4] = "Wednesday" 
dayNames[5] = "Thursday" 
dayNames[6] = "Friday" 
dayNames[7] = "Saturday" 

function customDateString() { 
currentDate = new Date() 
var theDay = dayNames[currentDate.getDay() + 1] 
var theMonth = monthNames[currentDate.getMonth() + 1] 
msie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 )); 
if (msie4) { 
var theYear = currentDate.getYear() 
} 
else { 
var theYear = currentDate.getYear() +1900 
} 
return theDay + ", " + theMonth + " " + currentDate.getDate() + ", " + theYear 
} 
//--> 
</SCRIPT> 
</HEAD> 
<BODY bgcolor="#FFFFFF"> 
<center><h2> 
<SCRIPT LANGUAGE="JavaScript"> 
document.write(customDateString()) 
</SCRIPT> 
</center> 
</h2> 
</BODY> 
</HTML>



this is a demo:
http://www.85time.com/bbs/showthread.php?threadid=144

Reply With Quote
  #7  
Old July 29th, 2001, 10:28 AM
DJdrenaline DJdrenaline is offline
Contributing User
Dev Shed Novice (500 - 999 posts)
 
Join Date: Jun 2001
Location: Toronto, Ontario, Canada
Posts: 631 DJdrenaline User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 m 19 sec
Reputation Power: 12
yo sup? >>hello<<

What's with the date/demo thing

Reply With Quote
  #8  
Old July 29th, 2001, 08:50 PM
mydowns mydowns is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2001
Posts: 5 mydowns User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Re: yo sup? >>hello<<

Quote:
Originally posted by DJdrenaline
What's with the date/demo thing



the code is the same, the demo is here:
http://www.85time.com/bbs/showthread.php?threadid=144

Reply With Quote
  #9  
Old July 29th, 2001, 09:38 PM
DJdrenaline DJdrenaline is offline
Contributing User
Dev Shed Novice (500 - 999 posts)
 
Join Date: Jun 2001
Location: Toronto, Ontario, Canada
Posts: 631 DJdrenaline User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 m 19 sec
Reputation Power: 12
.............................

............ i can really read chinese

lol

Reply With Quote
Reply

Viewing: Dev Shed ForumsOtherDev Shed Lounge > hello

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap