In this tutorial you will learn following topics Downloading WordPress Configuring wp-config.php and .htaccess Exploring the wp-content directories...
Category - Web-Development
2182
Mixing ACF and RBAC in yii framework
this article is part of reservation series ACF contains a property named role that is usually filled with ? to indicate that access is available for...
Backup database of your laravel app
you can now Backup database of your laravel app very easily using backup package for laravel 5.1 .Backup is a Laravel package that...
Configuring user authorization in yii framework
Check this tutorial if you want to create user login in yii 2 Yii has two methods to authorize users: ACF and RBAC. The first one, ACF, is...
Understand Many to many Relationships in laravel
Let’s imagine a good example for many-to-many relationships. Well, the books/categories relationship is perfect. In fact, imagine Twenty...
Creating a user login in yii framework
The application’s security starts with two well distinguished phases of the same user login: authentication and authorization. The first one...
Quick conversion to array or JSON in laravel 5.1
If you take a look at the code into the model you will see two methods: toArray and toJson. These two methods are the ones that make the magic...
Using Multiple models in the same view in yii framework
This tutorial is part of reservation series Often, we can find many models of same or different class in a single view. First of all, remember that...
Using the Bootstrap widget in yii framework
Yii2 supports Bootstrap as a core feature. Bootstrap framework CSS and JavaScript files are injected by default in all pages and we could even use...
Learn how to use AJAX in yii framework
this tutorial is part of reservation series Yii2 provides appropriate attributes for some widgets to make AJAX calls; sometimes, however, writing a...
Learn how to upload files with CodeIgniter
CodeIgniter comes with very good file uploading support, which can take a lot of the hassle out of writing upload functions. Getting ready There are...
Retrieve data from Google Analytics in laravel 5.1
In this article i will talk about Retrieving data from Google Analytics in laravel 5.1 ! google anylytics in best tool for webmasters for generating...
automatically Generate crud code in yii framework
Using Gii Before we use Gii, the automatic code generator, we need to install it into our code base. Installing Gii into the application Run the...
Who Uses Spark, and for What ?
Because Spark is a general-purpose framework for cluster computing, it is used for a diverse range of applications. In the Preface we outlined two...
Generate bar codes directly in your laravel app
In this article i will show you how to generate bar codes directly in to your laravel app for thsi we will usea new laravel package called barcode :...
Working with relationships in yii framework – reservation...
ActiveRecord provides us with skills to work with relationships between database tables. Yii2 employs two methods to establish the...
Creating an Authentication System in CodeIgniter
CodeIgniter doesn’t come with a user authentication system out of the box (urgh, that phrase), but nevertheless it doesn’t. If you want...
Dealing with Forms in symfony
Forms handling, processing, and validation are some of the most common things that we do when we create a web application, and practically, the only...
See Who’s Online in your laravel app
In this article i will show you how to See Who’s Online in your laravel app using Laravel Package called activity With this package, you can...
Using ActiveRecord to manipulate data in yii framework –...
This tutorial is part of hotel reservation series try out part 1 and part 2 first ActiveRecord offers a convenient way to access and manipulate data...
Learn how to build your own helper in CodeIgniter
This example uses a helper to download a very large file, of 200 MB, which can’t be downloaded in one file reading. This example will be...
Querying-related models in laravel 5.1
Let’s suppose that we are searching for the document number of a specific user. We will use the User and IdentityDocument entities we just saw...
Using Gii to create room, customer, and reservation models in yii
Using Gii to create room, customer, and reservation models in yii Try out part 1 of this series ! before exploring this tutorial .. Yii2 provides a...
Learn how to use SSL helper in CodeIgniter
In this Tutorial, we will use the CI third-party SSL helper to enforce an https or HTTP URI request and response between CI and the browser. This...
Create a Reservation Website with Yii2 Framework – Full...
In this tutorial, you will learn how to configure and manage databases, using SQL or ActiveRecord directly, then you will see how to solve common...
Basics of laravel Eloquent for Beginners
Create, read, update, and delete operations basics Every single article I read about Eloquent usually starts with some reading operations. I...
using built-in helpers in CodeIgniter
In this tutorial, we will see how to use CI build-in helpers. For this example, we will use the URL helper for generating links. The URL helper file...
Using Utility methods in laravel
As you probably imagined, Eloquent has a lot of utilities and methods that can improve your life as a developer. Trying to cover every single method...
Custom URL rules in Yii Framework
Try out this tutorial if you want create a news reader app and apply this tutorial :) Custom URL rules Yii2 give us the opportunity to customize URL...
Using aggregates functions in laravel
Sometimes, you will need to use the aggregates functions. No problem! Here is how you can do it with Eloquent. AppBook::count(); This is an example...