Nowadays you can find Facebook “Like” and “Recommend” widgets on every website. One problem I have always found with sharing URLs on Facebook is that…
2 CommentsTutorials / Programming tips Posts
Meteor makes it simple to develop real-time web apps in a matter of hours.Meteor.js is an open-source platform build on Node and MongoDB. To develop…
Leave a CommentIn this post, I would like to show you file uploading via cURL. cURL is a great glaring library. It can be used to make…
Leave a CommentOne more new operator from glaring PHP7, couple of days back I wrote about php7 spaceship operator , now I am going to write about…
Leave a CommentBlow are the some of the deprecated functionalities which are removed from the PHP7 as for RFC. 1. ext/ereg (deprecated in 5.3) and the ext/mysql…
Leave a CommentAnonymous functions are also known as Lambda functions. Lambda function and closures are the functions with no name. Anonymous functions has same variable scope characteristics…
Leave a CommentGenerators compute and yield iteration values on-demand unlike regular PHP iterators. Means generator returns a sequence of values with yield instead of a single value…
Leave a CommentA trigger is a named database object that is associated with a table, which performs their own operation automatically when user performs any INSERT,UPDATE,DELETE operations…
Leave a CommentSpaceship operator() also know as Combined Comparison Operator. Basically this operator will offer combined comparison means, it will do greater-than, less-than and equal comparisons between…
1 CommentFollow the below mentioned instructions to turn off or to disable the MySQL strict mode. This can be fixed in one of two ways Method…
1 Comment// categoriesCount.blade.php @inject(‘categories’,’App\categories’) Total categories : {{ $categories->count(); }} or // routes.php view::composer(‘categories’,function($view){ $view->with(‘categories’,’App\categories’); }); // categoriesCount.blade.php Total categories : {{ $categories->count(); }}
Leave a CommentRoute::get(‘admin/home’,[‘as’ => ‘home’,function(){ echo ‘admin home’; }]); // view echo route(‘home’); // output : http://localhost/admin/home Route::group([‘prefix’ => ‘admin’],function(){ Route::get(‘home’,[‘as’ => ‘home’,function(){ echo ‘admin home’; }]);…
Leave a CommentReplace() is one of the MySQL string function, It will search with the given string and REPLACE or UPDATE in all occurrences with given string.…
Leave a CommentBelow are the steps to change MySQL user passwood, Setup for first time the root password: mysqladmin -u root password YOUR_PASSWORD Change existent root password:…
Leave a CommentUploading files in Laravel very easy ,You just need to create two routes one is for form view another one is for request processing(uploading files…
4 Comments