Doctrine Relationship Management Between Entities

doctrine-entity

As we are using Doctrine ORM for easing our database layer programming, it's very important to understand how to establish the doctrine relationship between entities and do it in proper way to build a robust relational database design. Here by the … [Read more...]

Transformation Between Doctrine Entity And MySQL Database

doctrine orm

If you have started using doctrine ORM, you should already have the idea how tightly the database and doctrine entity are bonded together. Any kind of change must need to be reflected on doctrine entity and database itself as well. That can become a … [Read more...]

8 Most Frequently Used And Useful PHP Array Operations

php arrays

Array is one of the most vital part in every programming languages. It is also important to know what facilities and built-in functionality a programming language provides. PHP provides a very strong set of such efficient ways to deal with array data … [Read more...]

How To Execute Native SQL Query With Doctrine

doctrine

So, seems like you are in big trouble? Otherwise why you will want to execute doctrine native SQL query? In this tutorial I will describe and show how you can perform such operations. But that doesn't necessarily mean, I am encouraging you to use it … [Read more...]

Manage Domain On Apache Based Linux Server

htaccess tutorials

If you are on a shared hosting, you don't have to worry about it that much, as you get a nice control panel to manage domains easily. Well, if you now move to a VPS or dedicated server, you can still have it easily with help of cpanel or such … [Read more...]

How To Work With LinQ C# Lambda Expression

linq to xml tutorial

Well, though I have written few tutorials on LinQ and though those will be enough as reference for a programmer to get a solid start, I came to feel that, writing about details on C# lambda expression to be used in LinQ query are missing here and … [Read more...]

Few Useful Smarty Examples And Tips

smarty tips

If you have already read my basic smarty tutorial, then it is enough to work with it and get help in small parts from the official documentation of smarty. I have been actually working this way. But, I came to realize that, often I am forgetting or … [Read more...]

How To Work With CodeIgniter Forms

codeigniter forms tutorial

For a web application, HTML forms are the probably most important sections. Because, these are the real interface which make it happen to communicate and receives/store data from visitors. Now a days, we can't even imagine a website without at least … [Read more...]