Essential ColdFusion 4.5 for Web Professionals - Softcover

9780130406460: Essential ColdFusion 4.5 for Web Professionals
View all copies of this ISBN edition:
 
 
Web professionals' guide to ColdFusion 4.5 software. Shows how to master the use of the software, from setting up a ColdFusion server to tags and functions. Includes a companion Web site which features code, examples, databases and images for each of the practice projects in the text. Softcover.

"synopsis" may belong to another edition of this title.

From the Inside Flap:
Introduction

In the beginning, creating websites using static pages was enough until people started to realize that updating content on their sites was a tedious chore. People also realized they had huge amounts of information they wanted to list on their constantly-changing websites, as well as in their databases.

Also needed was the ability to add logic to the websites, allowing the users to search through their products, buy their products online, or perform a number of other functions, turning it into one giant web application or a series of small ones. If a user comes to the website and performs a search, or navigates a certain way through the site, it would be nice to have pages dynamically built for them to accommodate where they are in the site. Suddenly several languages popped up that allowed the web developer to do all of these things and more. Each language had strengths and weaknesses such as learning curves and cost, but for the most part, many of these languages allowed you to create the same types of applications.Languages Used for Web Application Development

There are several types of languages used for web development with new ones popping up all the time. Here are a few examples of some of the better-known ones being used today:

ColdFusion ASP—Active Server Pages

PHP C++

Drumbeat Lasso

JSP-Java Server Pages (Servlets) Perl

PHP Tango

Tcl

How Does ColdFusion Work?

ColdFusion doesn't require a high level of knowledge in programming or server-side scripting to get started in developing some pretty powerful applications. Written in a way that resembles HTML syntax, ColdFusion Markup Language (CFML) consists of tags and attributes that transform a static web page into a truly dynamic and customizable experience for each and every user. CFML consists of a series of tags and formatting options that perform different functions:Syntax:Today's date is: #DateFormat(Now(), "DDDD, MMMM DD, YYYY")#Output:Today's date is: Saturday, November 25, 2000

The ColdFusion application server runs behind your existing web server and parses the .cfm file (.cfm is the extension all ColdFusion pages are saved with) that was passed and converts it into plain HTML, which is then presented to the viewer. The user never sees the actual CFML coding which took place.About ColdFusionColdFusion Application ServerRequirements

With the introduction of ColdFusion 4.5, ColdFusion Application Server now runs on several operating systems including Windows 95/98/2000/NT, Solaris, and Linux. The recommended minimum requirements are:Enterprise Server

ColdFusion 4.5 for Windows

Windows NT, with service pack 4 or above

150-MB hard drive

128 MB of RAM

ColdFusion 4.5 for Linux

Red Hat Linux 6.0 or above

150-MB hard drive

128 MB of RAM

ColdFusion 4.5 for Solaris

SPARC Solaris 2.5, 2.6, or 7 with patch 103582-1B or above

200-MB hard drive

128 MB of RAMProfessional Server

ColdFusion 4.5 for Windows

Windows 95, 98, NT, or 2000

50-MB hard drive

32 MB of RAM

(Windows 2000 systems should have a minimum 96 MB of RAM)

ColdFusion 4.5 for Linux

Red Hat Linux 6.0 or above

100-MB hard drive

64 MB of RAMNOTEThere have been some problems using the tag (introduced in chapter 9) with service pack 6 for NT 4.0. If you are currently using this you should upgrade to service pack 6a to fix this problem.Download ColdFusion 4.5

You can download a full-featured 30-day trial version of ColdFusion from Allaire's website (allaire) to install on your machine. You can also grab a copy of another version of ColdFusion called ColdFusion Express, that you can run as long as you would like absolutely free. The catch, you ask? It doesn't have all the functionality, nor can it handle all the tags the full version offers.What's the Difference?

As mentioned before, ColdFusion comes in three versions. Express is considered the development platform for many newcomers to ColdFusion.

This leaves Professional and Enterprise editions to tangle with. For all intents and purposes these versions are identical. They will process your ColdFusion code exactly the same. The benefit to having ColdFusion Enterprise is its ability to use and administer a clustered ColdFusion server environment to deal with failover (one system receiving too many requests and a second system (or more) assisting in handling the traffic). It also has native support for more database solutions such as Oracle and Sybase.Differences Between Express and the Full Version

Yep, the other shoe has dropped. Express is a great product to get your feet wet with ColdFusion. Since its creation its intent was to feed you and allow you to learn ColdFusion for free and fall in love. Then once you're hooked, you'll have to pony up for the Enterprise or Professional versions of the product.

Rather than telling you what won't work, we'll list the tags that will work in ColdFusion Express. Most of these tags will be covered in this book along with some of the other full-version tags.Tags in this book that are supported by ColdFusion Express

Now if these aren't enough tags to work with, you have another option! Allaire provides free 30-day evaluations of most of their products, including ColdFusion. I would get very comfortable with the tags above while using Express and then give the evaluation full version a shot to do some test development. But make sure to do it quickly; 30 days really flies when you're having fun!ColdFusion Studio

Although ColdFusion Studio is not required to create ColdFusion pages, it will make your life a little easier with all the wizards and built-in tools it has to offer, which will aid you in creating your pages quicker than if you were to do this in a regular text editor.

Cold Fusion Studio 4.5 has the following minimum requirements:

Windows 95, 98, 2000, or NT

35 MB of disk space

32 MB of RAM

(Windows 2000 systems should have a minimum of 96 MB of RAM)Who This Book Is Written for and What Is Assumed

This book is written for anyone wanting to learn how to build dynamically driven database sites. You should already know how to use HTML and have an understanding of HTML forms. If you are unfamiliar with HTML forms or need a quick tutorial, check out Appendix A.

You should also have an understanding of Microsoft Access and the Structured Query Language (SQL). All of the Access databases we use in this book as well as the code and images will be on the companion website (phptr/essential/coldfusion/). In chapter 1 we will also go over creating the shelleyCatalog Access database, which you will use in a few of these chapters.Find Online Support and Documentation

There are several sites on the web that have communities of ColdFusion programmers who openly share their knowledge and expertise. One of the best places is the Allaire website itself where there is support for all of Allaire's products:allaire/developer

You will also want to check out the Allaire Knowledge Base from time to time to find answers to frequently asked questions:allaire/Support/KnowledgeBase/SearchForm.cfm

ColdFusion 4.5 server also comes with online documentation that was installed on your hard drive during the installation process.This is the loopback IP address used for your local machine. The name localhost will work as well, or if your machine has been assigned its own IP address you can use it.

During installation you can choose to install the example applications that come with ColdFusion server. This is good for poking around and learning some already functional applications. Additional references are listed in Appendix B.

As we build this site we will teach you the components that go into creating different types of applications with ColdFusion.

The projects in each chapter are designed to build on the new functionality you are learning and apply it toward an application you would use in a real-life situation. At the end of each chapter you will be asked to complete a more advanced project based on what you have just done. The answer or possible solution is on the companion website.

While we teach you how to use ColdFusion using some of the most widely used tags and functions in the language, there are still plenty of other tags and functions that this book does not cover. These can be found in the documentation that comes with ColdFusion.

From the Back Cover:

With Allaire ColdFusion 4.5, you can build powerful, dynamic Web applications faster than you ever imagined! Learn ColdFusion 4.5 now, from professional Web developers, through real world projects with example code available from the companion Web site. Start with the basics, such as learning database fundamentals and setting up an Access database. Then master every element of a robust ColdFusion solution, from setting up your ColdFusion server through working with the most important ColdFusion tags and functions. Every project's code examples, database, and images are downloadable from the companion Web site. No other ColdFusion book gets you running this fast, or supports you this well!

You'll learn all this and much more-hands-on!

  • Database access and integration
  • Building online catalogs, step-by-step
  • Automating email and user interaction
  • Providing site search capabilities
  • Integrating ColdFusion with WAP and web-clipping technologies to build applications for WAP-enabled phones as well as wireless Palm devices

Look to Essential Books for ALL the Web Skills You Need!

All these books share the same great format and the same dynamic Web site ... so once you've used one, learning from the others is a piece of cake!

  • Essential Flash 5 for Web Professionals
  • Essential PHP for Web Professionals
  • Essential ASP for Web Professionals
  • Essential Design for Web Professionals
  • Essential CSS and DHTML for Web Professionals
  • Essential Perl 5 for Web Professionals
  • Essential JavaScript for Web Programmers
  • with more to come!

"About this title" may belong to another edition of this title.

  • PublisherPrentice Hall Ptr
  • Publication date2001
  • ISBN 10 0130406465
  • ISBN 13 9780130406460
  • BindingPaperback
  • Edition number1
  • Number of pages240

Top Search Results from the AbeBooks Marketplace

Stock Image

Brown, Fredrick,
Published by Prentice Hall Ptr (2001)
ISBN 10: 0130406465 ISBN 13: 9780130406460
New Softcover Quantity: 1
Seller:
Basi6 International
(Irving, TX, U.S.A.)

Book Description Condition: Brand New. New. US edition. Expediting shipping for all USA and Europe orders excluding PO Box. Excellent Customer Service. Seller Inventory # ABEOCT23-381039

More information about this seller | Contact seller

Buy New
US$ 37.07
Convert currency

Add to Basket

Shipping: FREE
Within U.S.A.
Destination, rates & speeds
Stock Image

Brown, Fredrick,
Published by Prentice Hall Ptr (2001)
ISBN 10: 0130406465 ISBN 13: 9780130406460
New Softcover Quantity: 1
Seller:
Romtrade Corp.
(STERLING HEIGHTS, MI, U.S.A.)

Book Description Condition: New. Brand New Original US Edition.We Ship to PO BOX Address also. EXPEDITED shipping option also available for faster delivery.This item may ship from the US or other locations in India depending on your location and availability. Seller Inventory # ABTR-272271

More information about this seller | Contact seller

Buy New
US$ 40.96
Convert currency

Add to Basket

Shipping: FREE
Within U.S.A.
Destination, rates & speeds
Stock Image

Brown, Fredrick,
Published by Prentice Hall Ptr (2001)
ISBN 10: 0130406465 ISBN 13: 9780130406460
New Softcover Quantity: 1
Seller:
SMASS Sellers
(IRVING, TX, U.S.A.)

Book Description Condition: New. Brand New Original US Edition. Customer service! Satisfaction Guaranteed. This item may ship from the US or our Overseas warehouse depending on your location and stock availability. We Ship to PO BOX Location also. Seller Inventory # ABRR-272271

More information about this seller | Contact seller

Buy New
US$ 42.63
Convert currency

Add to Basket

Shipping: FREE
Within U.S.A.
Destination, rates & speeds