In this post, you will find practical examples showing how to install and use the zip command to compact and organize files within your file…
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.
Withing the loop – it will display the post tags $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { echo ”.$tag->name .’ ‘; }…
Leave a CommentAccording to the conditional comment this is not IE 5-9
Leave a CommentThis post shows the possible ways to remove specific element from array based on value of the element. Removing specific value Using array_diff() Using this…
Leave a CommentThis tutorial will describe the usage of the PHPExcel library to generate an Excel file from a PHP array. Usage of PHPExcel library is very…
5 CommentsThis article shows how to read RSS feeds using php script. If you are reading this post you might know about RSS feeds and it’s…
Leave a CommentYou can use getQueryLog() method to get most recently executed queries. But in Laravel 5.1 it is disabled by default. So you have to enable…
Leave a CommentFor small-scale applications single route file is sufficient but large-scale applications its cumbersome to maintain and organize the routes. The solution for this was creating…
1 CommentHey, Today I would like to show you how we can convert PDF to JPEG using imagick extension. Imagick is a native php extension to…
15 CommentsToday I would like to write about one of the little-known features of laravel eloquent called “replicate”. To copy everything from existing row we just…
4 CommentsLaravel’s route model binding has been around for a while, but Laravel 5.2 is about to make it even easier with Implicit model binding. Implicit…
Leave a CommentOne of the greatest things about Express is that it is easily extended, which is achieved by using middleware. Middlewares are functions that handle requests,…
Leave a Commentfunc_get_args() returns an array with all arguments of the current function. PHP5.6 – splat operator Arrays and Traversable objects can be unpacked into argument lists…
Leave a CommentIn this post, I would like to write getting started steps for the Express.js framework. What is Express? Express is a minimal and flexible Node.js…
Leave a CommentRecently I have migrated core PHP application to the Laravel5 framework. The old application used SHA1 encryption so I have implemented Hashing contracts of laravel5…
2 Comments