The career gaming Monster Get better during of this 888 Gambling residential home might need online players in your global throughout that the mythical beasts exist. Societal wagering dwelling online games is going to be mainly intended with regard to excitement makes use of highlight undeniably zero effect on any specific probable possibility triumphs in internet casino having authentic funds.
PHP 7.2 What’s new features and improvements
PHP 7.2 has released officially with new features, functions and several smaller core improvements. PHP 7.2 has come with some new security functions and language legacy clean ups. it provides a big performance boost and it is faster than PHP 7. Here I will describe about the new released features that are mentions as below. PHP 7.2 features Parameter type…
WordPress customization part 3- Changing the order of dashboard menus
This is the 3rd part of wordpress customization series. Now we are going to change the order of wordpress dashboard menus. we can change the order using menu_order filter. Before using menu_order filter, we need to activate custom_menu_order first. Go to your functions.php file and put the following code. function custom_menu_dashbaord_order($menu_order) { if (!$menu_order) return true; return array( ‘index.php’, //…
WordPress customization part 2 – Renaming dashboard menus
This is the part 2 of wordpress customization series. Sometimes guys you need to rename your wordpress dashboard menus as your convenience. Like if you want to change your Posts menu to Blog posts, you can do it easily with admin_menu hook. First of all we go to functions.php and create a custom function as follow. Function rename_top_level_menus(){ global $menu;…
How to prevent sql injection in php ?
SQL Injection
How to create a globally accessible helper class in Laravel 5.5
Helper class in laravel is a class that contains all those functions which are performs common tasks and can be reused in our application. Here we will create a class which contains reusable functions and these functions can be called every where in your laravel application. So let’s start to create our helper class that will globally accessible. How to…
WordPress customization part 1- removing menu from wordpress dashboard
This is the first part of wordpress customization series. In this tutorial i will discus about removing menu from wordpress dashboard. Removing a menu from dashboard doesn’t means that the menu has removed forever but it is just hide from admin screen. WordPress is a very popular cms (Content Management System) that provide us a very usual and easy back end environment.…
Laravel voyager – The best free admin package for laravel
Laravel Voyager Introduction Laravel Voyager is a admin package that facilitate full administration system for Laravel framework. Voyager includes BREAD(CRUD) operations, a media manager, menu builder and much more features. BREAD/CRUD Builder Voyager provide a system that is called BREAD that means Browse, Read, Edit, Add and Delete. Using this functionality you can easily add any views and functionality to…
Laravel 5.6 – What’s new are releasing ?
Laravel 5.6 is ready to release in February 2018. Laravel 5.6 is releases, it is a good news for the lovers of laravel. Every one who work with php, knows about the Laravel. It is a very powerful and popular framework. In last two years, Laravel become the most popular framework. Laravel has a large community of developers, so it releases…
Bootstrap Validator plugin for form validation
Bootstrap validator is great plugin to validate a bootstrap form. It is a simple and bootstrap friendly form validation plugin for bootstrap 3. It is flexible, customizable and ajax enabled functionality to your bootstrap form. Bootstrap Validator installation there are two ways to install bootstrap validator plugin Download zip package manually from https://github.com/nghuuphuoc/bootstrapvalidator/archive/v0.5.2.zip Use Bower to install $ bower install bootstrapvalidator…