NamePros.Com (http://www.namepros.com/)
-   Webmaster Tutorials (http://www.namepros.com/webmaster-tutorials/)
-   -   Coldfusion Tutorial - Beginners - Part I (http://www.namepros.com/webmaster-tutorials/38759-coldfusion-tutorial-beginners-part-i.html)

Prototype 07-14-2004 09:56 AM

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!

Ethan 07-14-2004 06:50 PM

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 :D

Prototype 07-14-2004 08:04 PM

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!


All times are GMT -7. The time now is 06:35 PM.
Site Sponsors
Advertise your business at NamePros

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