Years ago, think 2003, I had an idea for a Contact Management System . The base of the program would be contact based. Keeping things like: Name Company Title/Position Address Phone Number(9) Notes Very basic. But with one caveat, it could be extendable by plugins . I was going to write this in ColdFusion , but nothing ever came from it. I’d like to try my hand at it again , this time in Java or something similar? I don’t know how I would accomplish this. There would have to be some kind of config file for each extension/addition to the program that would load the external programming. Yeah, it def needs more attention and thought process to it. But I’d thought I’d put it out there for now so I can remember it later.
Ah now we come to ColdFusion. Such a great language to be programming websites in. I figured since I created a Hello World sample app in other languages, why not here. Here's the most basic output for ColdFusion:
<cfoutput>Hello World</cfoutput>
Of course we can make it a bit more fun... by using a variable to hold the "Hello World" in and then output that variable. In the next example, we'll use greetings as the variable.
<cfset greetings="Hello World">
<cfoutput>#greetings#</cfoutput>
So yep that's that, simple enough.
Comments
Post a Comment