Working With MySQL Unions
11 March 2014
MySQL unions used to combine the results of multiple `SELECT` statements into one result. MySQL supports both `UNION` and `UNION ALL` for joining `SELECT` results.
11 March 2014
MySQL unions used to combine the results of multiple `SELECT` statements into one result. MySQL supports both `UNION` and `UNION ALL` for joining `SELECT` results.
11 March 2014
In PHP applications, Retrieving data from relational tables generally require the use of joins. MySQL joins enable developers to select data from multiple tables with a single SQL statement. Let's explore MYSQL joins.
11 March 2014
In fact, Laravel supports a bunch of handy methods that can handle form creation with ease. We are going to explore these methods.
09 March 2014
Composer is a dependency management tool for PHP developers. It allows you to define all libraries that your application depends on and automatically download these libraries with a simple command. Composer solve many problems, you know if your application depends on many libraries and these libraries depend on other libraries like frameworks ,It will be cumbersome to make all these libraries up to date.
08 March 2014
Laravel has awesome methods to retrieve, change, create and store request data. It allows you to handle both `$_GET` and `$_POST` data and store in session or cookies. Let's look at some methods of accessing request data.
08 March 2014
Cron API is a great feature of wordpress. It allows wordpress to execute certain functions on a schedule. By default, wordpress schedule events to check for new versions and to check for plugins and themes updates. Every time your blog requested by visitor or search engine bot. Wordpress check if there are any cron jobs to run.
06 March 2014
We have discovered eloquent fetching methods in previous parts. It's time to fine tune query constraints as they add custom rules to our queries.
03 March 2014
We discussed later how to retrieve rows as objects and perform basic CRUD methods on them. Well,there are other good tasks that eloquent can perform. Let's discuss some of them and the rest will be discussed in subsequent parts.
03 March 2014
Laravel is a MVC PHP framework so it ships with its own ORM component called "Eloquent". Eloquent will take care of records retrieval for us. We don't have to write any SQL line. Let's explore eloquent basic CRUD methods.
02 March 2014
In Laravel Migrations Part1, I discussed how to create, run and update your migrations. It seems you need more and fortunately laravel still have many features to enhance your application migrations. Let's explore some of them.