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…
Leave a CommentAuthor: Praveen Anaparthi
11+ years of IT industry experience holding a wide range of skill sets and roles with significant work on PHP, Node.js, Python, Ruby, Docker, React.js, Microsoft Azure, Azure DevOps, Windows PowerShell, Shell script, Jenkins, MongoDB, SQL, MySQL, Apache, Nginx. etc. It is my passion to learn new things and implement them as a practice. Aside from work, I like gardening and spending time with pets.
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…
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 CommentsIn this post I would like to show you, how to upload files with drag and drop interface with dropzone.js in your Laravel/Laravel5 applications. Dropzone…
41 CommentsToday I would will like to show you how to use Angular JS in Laravel5 and I will show you how to get data from…
Leave a CommentIn this post i would like to explain about JavaScript Namespaces. Namespaces is nothing but grouping different functionality under the single unique name.As we know…
Leave a CommentForeach provides easy way to iterate over the arrays, objects. Foreach is the most important control structure in any language. So i am going to…
Leave a Commentwe can read a file’s metadata for example, permissions and ownership with PHP’s stat() function, Which returns information about a file in a array format.…
Leave a CommentThis abstract iterator filters out unwanted values. This class should be extended to implement custom iterator filters. The FilterIterator::accept() must be implemented in the subclass.…
Leave a CommentThe purpose of the tutorial is to show you the differences between encodeURI() and encodeURIComponent() functions. encodeURIComponent() This method will encode the given string ,…
Leave a Comment