Custom Facebook Share Button without FB-OG Tags
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
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
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
In this post, I would like to show you file uploading via cURL. cURL is a great glaring library. It can be used to make
One more new operator from glaring PHP7, couple of days back I wrote about php7 spaceship operator , now I am going to write about
Blow 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
Anonymous functions are also known as Lambda functions. Lambda function and closures are the functions with no name. Anonymous functions has same variable scope characteristics
Generators 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
A 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
Spaceship 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
Follow the below mentioned instructions to turn off or to disable the MySQL strict mode. This can be fixed in one of two ways Method
// 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(); }} I hope
Route::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'; }]);
Replace() is one of the MySQL string function, It will search with the given string and REPLACE or UPDATE in all occurrences with given string.
Below 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:
Uploading 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