Sign Doug's SOTR Petition!

Sign Doug's petition to his boss and help send him to Scotch on the Rocks in 2012!
Recent Entries
Contact Doug!
Learn About Doug!
View Doug Boude's online resume
updated 11/18/2009

View Doug Boude's profile on LinkedIn
Link to me!

Follow Doug Boude on Twitter
Follow me!

Be Doug's friend on Facebook
Befriend me!
(I promise not to follow you home)
OO Lexicon
Chat with Doug!
NO MORE CAREER
POLITICIANS!
Get Out Of Our House: Replacing congress with TRUE citizens!
You may also be interested in...
Web Hosting
best web hosting - top web hosting sites, thetop10bestwebhosting.com

Czech your Page Rank!
Check Page Rank of any web site pages instantly:
This free page rank checking tool is powered by Page Rank Checker service
Surf's Up!
Visit Egosurf.org and massage YOUR web ego!
My Score: 9,001
Doug's Books

Read (and recommend)

  • Men are from Mars, Women are from Venus
  • The Wisdom of Crowds: Why the Many Are Smarter Than the Few and How Collective Wisdom Shapes Business, Economies, Societies and Nations
  • Blink: The Power of Thinking Without Thinking
  • Head First Design Patterns
  • Transact-SQL Programming
  • What's So Amazing About Grace?
  • Just So Stories (Rudyard Kipling collection)

Reading

  • Prayer: Does it Make Any Difference?
  • Data Mining (Practical Machine Learning Tools and Techniques)
<< February, 2012 >>
SMTWTFS
1234
567891011
12131415161718
19202122232425
26272829
Search Blog

Recent Comments
Re: Basic Ajax Select List Filter in PHP (by opineemia at 2/02 8:47 PM)
Re: PHP vs COLDFUSION (by dougboude at 1/24 9:47 AM)
Re: PHP vs COLDFUSION (by WhatTheHeck at 1/23 7:03 PM)
Re: Recursive Functions in ColdFusion (by Marty McGee at 1/22 1:01 PM)
Re: SQL Forward Engineering with Visio 2003 Professional (by Rama at 1/10 11:05 AM)
Re: PHP Export to Excel Snippet (by rasha at 1/10 1:55 AM)
Re: Fredrick "French" Fry (by Picky eater at 1/09 2:21 PM)
Re: Disappearing IE Popup Window During Save/Open Dialog (by Vivekanand at 1/06 12:51 AM)
Re: Just What IS a 'Service Layer', Anyway? (by Ashishkumar Haldar at 1/05 7:49 AM)
Re: Viewing Option Text (in IE7) that's Wider than the Select List (by ranjit sachin at 12/20 6:22 AM)
Re: Recursive Functions in ColdFusion (by Jason at 12/15 12:13 PM)
Re: Viewing Option Text (in IE7) that's Wider than the Select List (by kt at 12/08 3:47 AM)
Re: PayPal IPN Coldfusion CFC (by Guest at 11/28 6:11 PM)
Re: SQL Forward Engineering with Visio 2003 Professional (by freddy villamil at 11/09 2:49 PM)
Re: Finally Found a Use for CFTHREAD (by criclebrava at 11/09 1:23 PM)
Re: Finally Found a Use for CFTHREAD (by assisisowsfub at 11/07 10:37 PM)
Re: IRRITATING CF QUERY ERROR AND SOLUTION (by dougboude at 10/10 10:48 AM)
Re: Using Google as your CF Mail Server (by hlharkins at 10/09 10:24 AM)
Re: IRRITATING CF QUERY ERROR AND SOLUTION (by Peter Boughton at 10/07 3:15 PM)
Re: My Thoughts on the Current Presidential Contenders (by dougboude at 9/23 12:21 PM)
Categories
Archives
Photo Albums
Funnies (5)
Family (3)
RSS

Powered by
BlogCFM v1.11

13 July 2010
PHP vs COLDFUSION
a brief, biased comparison

I had the privilege of doing a short presentation at our local CFUG meeting last night, the topic being "Coldfusion Vs PHP", so thought I'd share the slides and some brief commentary on some of them. We didn't record the meeting, so what you're about to see is an abbreviated version.




Posted by dougboude at 12:43 PM | PRINT THIS POST! |Link | 12 comments
Subscription Options

You are not logged in, so your subscription status for this entry is unknown. You can login or register here.

Re: PHP vs COLDFUSION
hey Doug. Thanks for posting your preso. I wanted to point out one thing: you listed the ternary operator as one advantage of PHP. As of version 9, ColdFusion also has the ternary operator (Railo has it as well, but I don't know about Open BlueDragon).
Posted by Tony Garcia on July 13, 2010 at 1:38 PM

Re: PHP vs COLDFUSION
Posted by Tony Garcia on July 13, 2010 at 1:45 PM

Re: PHP vs COLDFUSION
Thanks for the info on CF9. Unfortunately for those of us who aren't able to use the latest version of CF, it's a non plus. I'm stuck in 8 land over here.
Posted by dougboude on July 13, 2010 at 2:33 PM

Re: PHP vs COLDFUSION
This presentation was really well done. I didn't attend the CFUG, obviously, but I did listen through each slide to see if I could learn a few new things about either side. I'm not required to do any PHP stuff at my job, but I've been learning PHP basics over the last few weeks merely for informational purposes. I saw some code snippets in here that I hadn't come across yet, namely mysql_fetch_assoc instead of mysql_fetch_row, inline output syntax, file reading, ternary operators, HEREDOC notation, and how to write classes. Thanks for sharing.
Posted by Jose Galdamez on July 13, 2010 at 6:00 PM

Re: PHP vs COLDFUSION
Hey Doug, even though it was "short", would you be interested in presenting this on the Online CFMeetup (for those not familiar, more at http://www.coldfusionmeetup.com)? It's been a little while since we had you on, and this is a topic that I'm sure many would enjoy (and then it would be recorded for you, of course.) Even if it's just 30 minutes, that's ok (or if you want to build it out to 45-60, that's find, too.) Let me know if interested.
Posted by charlie arehart on July 13, 2010 at 11:37 PM

Re: PHP vs COLDFUSION
Nice presso. You can use the new operator in CF9 to create objects:

so instead of:
foo = CreateObject("component", "package.bar.foo").init();

you can simply do:
foo = new package.bar.foo();
Posted by John Whish on July 14, 2010 at 5:47 AM

Re: PHP vs COLDFUSION
Yes, I'd be interested in seeing this on the Online CFMeetup.
Posted by Lola LB on July 14, 2010 at 5:51 AM

Re: PHP vs COLDFUSION
Hey Charlie, definitely interested in a cfmeetup opp. :) I'll get with you offline.
Posted by dougboude on July 14, 2010 at 8:45 AM

Re: PHP vs COLDFUSION
Yeah, I hear you that not everyone might not be at the latest version of CF. But it just might be a good idea to mention in your presso that the latest and greatest CF has "caught up" to PHP in terms of the ternary and new() operators.
Posted by Tony Garcia on July 17, 2010 at 11:24 AM

Re: PHP vs COLDFUSION
I love Coldfusion. I think, it is the more simple and powerful language to develop web application, but in some cases, expecially when you have to develop a "dynamic" site - let me pass this term... - for a small client, it can't be the better solutions in terms of cost if compared with PHP (my example: http://www.taschendirekt.de ). This is a first post that evidences some basic differences between two programming languages such as variables and queries for all programmers that, for necessity, have to migrate from Coldfusion to PHP.
Posted by Reader on November 21, 2010 at 9:19 PM

Re: PHP vs COLDFUSION
Coldfusion is so awesome only 1% of the programming community uses.
Posted by WhatTheHeck on January 23, 2012 at 7:03 PM

Re: PHP vs COLDFUSION
The elite are always in the minority, bonehead.
Posted by dougboude on January 24, 2012 at 9:47 AM

Name:   Required
Email:   Required your email address will not be publicly displayed.

Want to receive notifications when new comments are added? Login/Register for an account.

Time to take the Turing Test!!!

Fourteen plus Seven equals
Type in the answer to the question you see above:

Your comment:

Sorry, no HTML allowed!