logo

php to ms-sql-server connection

Today we will read how to connect to MS SQL Server using PHP. Normally PHP is bundled in an package having MySql as database all required dlls, extensions and libraries to connect to MySql Database with PHP. When we want to make connection with MS-Sql server we need few extra things like some extensions and a bit different code to […]

Read more
cake created_by

As CakePHP has created and modified datetime fields which automatically saved during insert and update operation, after few months development I felt there should also be automatic created_by and modified_by field handling so that we can reduce filling in each time current logged in user’s id in created_by and modified_by field manually. First of all I looked if CakePHP already […]

Read more
cakephp

CakePHP naming conventions can be found on CakePHP official website in detail, but here I will try to trim it to make it more easy to understand. What are naming conventions These are optional rules to name your database tables, Fields in a table, Files, Classes and Functions or Methods in classes, folder structure proposed etc. What are Benefits of […]

Read more