Book Image

Railo 3 Beginner's Guide

By : Mark Drew , Gert Franz, Paul Klinkenberg, Jordan Michaels
Book Image

Railo 3 Beginner's Guide

By: Mark Drew , Gert Franz, Paul Klinkenberg, Jordan Michaels

Overview of this book

<p>Railo Server is one of the quickest ways to start developing complex web applications online. Widely considered as the fastest CFML (ColdFusion Markup Language) engine, Railo allows you to create dynamic web pages that can change depending on user input, database lookups, or even the time of day.</p> <p>Railo 3 Beginner's Guide will show you how to get up and running with Railo, as well as developing your web applications with the greatest of ease. You will learn how to install Railo and the basics of CFML to allow you to gradually build up your knowledge, and your dynamic web applications, as the book progresses.</p> <p>Using Packt’s Beginner's Guide approach, this book will guide you, with step-by-step instructions, through installing the Railo Server on various environments. You will learn how to use caches, resources, Event Gateways and special scripting functions that will allow you to create webpages with limitless functionality. You will even explore methods of extending Railo by adding your own tags to the server and building custom extensions. Railo 3 Beginner's Guide is a must for anyone getting to grips with Railo Server.</p>
Table of Contents (16 chapters)
Railo 3
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface

Time for action - using user-defined functions


To create a user-defined function all you have to do is use the <cffunction> tag. For example:

<cffunction name="MakeCapitalised">
<cfargument name="wordToCapitalise" type="string">
<cfset FirstLetter = Left(wordToCapitalise,1)>
<cfset FirstLetter = UCase(FirstLetter)>
<cfset RestOfWord = Mid(wordToCapitalise, 2, Len(wordToCapitalise)-1)>
<cfreturn FirstLetter & RestOfWord>
</cffunction>
<cfoutput>
#MakeCapitalised("steven")#
</cfoutput>

The previous code will return the following:

What just happened?

Let's work through the code, we first define the function with a name of MakeCapitalised:

<cffunction name="MakeCapitalised">

Then we define the argument that it takes; in this case, we call it wordToCapitalise and say that it is of type string:

<cfargument name="wordToCapitalise" type="string">

Next, we get the first letter of the wordToCapitalise using the Left() function...