Search Results

3
votes

Including file in PHP ?

The difference between include() and require() is whether you get a warning or a fatal error (respectively). The PHP docs don't mention any performance difference. Using the _once() varian …
0
votes

Migrating tiny C# console app to something running on Ubuntu Server 9.04

Have you tried just using C#? The Mono project provides an open-source, cross-platform .NET port of the .NET framework. That way y …
0
votes

MySQL or SQL Server better for an Enterprise application?

It will depend on your application's needs. I'm not especially well researched on the differences between the various SQL engines, but as far as I know, MySQL is faster for SELECT queries (if you …