Wordpress Themes - Music Store - Internet Businesses Online Articles - Find jobs - Debt Consolidation

PDA

View Full Version : Plus points of Coldfusion


Nokia999
Oct 26th 2005, 4:31 am
can anybody tell me about plus points of coldfusion in comparison with php?

J.P
Oct 26th 2005, 8:33 am
If you have a look here; http://www.macromedia.com/devnet/coldfusion/articles/php_cfmx.html it's a PHP V CF document.

JP

H-Man
Oct 26th 2005, 8:49 am
Cold fusion seems to me to be easier to implement. I also think the debugging is also better. But that might be because I have built a 150 sites in Coldfusion and 2 in PHP.

Nokia999
Oct 26th 2005, 6:12 pm
If you have a look here; http://www.macromedia.com/devnet/coldfusion/articles/php_cfmx.html it's a PHP V CF document.

JP
Let me read it
Thank you for giving me this link.

profs77
Dec 11th 2005, 3:14 pm
Coldfusion is really good for generating graphs and charts and pdfs and flash animations on the fly. Its very expensive software though whereas php is free.

Nokia999
Dec 12th 2005, 12:22 am
So it would need coldfusion supported webservers ?

tbarr60
Dec 13th 2005, 9:36 pm
So it would need coldfusion supported webservers ?

Yes, you need ColdFusion web application server on the web server. The good new is that there is plenty of inexpensive hosting at places like crystaltech.com, hostmysite.com, and godaddy.com. All of these are in the $15 per month or less range.

Mitch
Feb 24th 2006, 1:31 pm
CF is more fun.

This is the php code to write a file to your server:


<?
function WriteToFile($strFilename, $strText)
{
if($fp = @fopen($strFilename,"w "))
{
$contents = fwrite($fp, $strText);
fclose($fp);
return true;
}else{
return false;
}

}

WriteToFile('path/File.txt','test 123');

?>


This is the CF Code:


<cffile action="write" file="path_to_file" />

Mitch
Feb 24th 2006, 1:33 pm
The only downside to CF is that you have to pay for it. I like to think it pays for itself with the time it saves me.

tbarr60
Feb 24th 2006, 3:16 pm
At some hosts, ColdFusion costs $1.95. At bigger companies you hear, it's expensive but then they download some free tool like JBoss and hire three admins to support it. Nice (typical) code example.