[advanced search]
Results from the most recent live auction are here.
19 members in the live chat room. Join Chat!
Register Rules & FAQ NP$ Store Active Threads Mark Forums Read
Go Back   NamePros.Com > Design and Development > Webmaster Tutorials
User Name
Password

Old 07-14-2004, 09:56 AM   · #1
Prototype
Guest
 
Trader Rating: (1)
Join Date: Jul 2004
Posts: 22
NP$: 29.00 (Donate)
Prototype is an unknown quantity at this point
Arrow Coldfusion Tutorial - Beginners - Part I

Part I

In Part I of this Beginner's Tutorial I will show how to calculate the current time in Macromedia Coldfusion.

Before you start, you need to make sure your server can receive Coldfusion pages properly. Inorder to do so you must first install the IIS server on windows XP professional via control panel and then install a free trial or full version of Coldfusion. You may also buy coldfusion hosting online. After you have done so, you may begin your work.

So let's make our first page.

PHP Code:
<html>
<
head></head>
<
body>

<
CFOUTPUT>
<
CFSET date = Now()>
<
br>
<
b>#date#</b>
</CFOUTPUT>

</
body></html>


Now save this file as date.cfm. You have just completed your first tutorial! Now let me explain how it all works.

the CFOUTPUT functions just like the BODY tag in html. Only CFOUTPUT is used for Coldfusion. Every coldfusion code that you want to display is put in between the CFOUTPUT tags.

CFSET is used to create and modify coldfusion variables. For example, we have written:

PHP Code:
<CFSET date = Now()>


We can replace the word "date" with any other word, and it will still function the same! Try it!

the Now() function, is what really makes the difference. Now() gives the current time and date.

Remember, that you can use html tags along with coldfusion tags!

So if you would use the code above, your result would look something like this:

Quote:
{ts '2004-14-07 12:52:20'}



In the next tutorial, I will show you how to customize this date to make it formatted anyway you want. You will be able to make it more understandable, for ex: January 12, 2004. or however you want it to be. But that will be all covered in the next tutorial!


Thanks for Reading!


Please register or log-in into NamePros to hide ads
Prototype is offline   Reply With Quote
Old 07-14-2004, 06:50 PM   · #2
Ethan
Sheriff Of Nothing
 
Location: Florida
Trader Rating: (1)
Join Date: Apr 2004
Posts: 220
NP$: 45.10 (Donate)
Ethan is an unknown quantity at this point
Nice, this will come in handy as I never learned ColdFusion but have it on disk from a friend, older version, but I figure I can play around with it
__________________
Lowter.com - Webmaster eZine and Community
Interactive eZine, Articles, Blogs, and More
Norics.com | Cascading Design | Blue Programming
Ethan is offline   Reply With Quote
Old 07-14-2004, 08:04 PM   · #3
Prototype
Guest
 
Trader Rating: (1)
Join Date: Jul 2004
Posts: 22
NP$: 29.00 (Donate)
Prototype is an unknown quantity at this point
Yes it does work with the older versions.

Here is a continuation of Part I, now I will show how to modify the date to make it look the way you would like it to look.

Open up the same page now change the cfset parameter to this:



PHP Code:
<cfset date = DateFormat(now(), "mmmm d, yyyy")>


With this new function we have changed how the date will appear. Save the file and reload the page. Your result should look like this:

Quote:
July 15, 2004



That is all there is to formating and displaying the date. You may format it in whatever order you wish. For example it can be yyyy-d-mmmm or however you decide it to be.

Here are all of the different possibilies that you may use:

"mmmm" -> Month
"yyyyy" -> Year
"dddd" -> Day of the week
"d" -> Date

So, the following output: dddd mmmm yyyy would result in:

Quote:
Friday July 2004



Enjoy!
Prototype is offline   Reply With Quote
Closed Thread

NamePros is a revenue sharing forum.

Thread Tools

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
Forum Jump


Site Sponsors
Build your NameBrand Thousand Dollar Profits
Advertise your business at NamePros
All times are GMT -7. The time now is 05:53 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0