Here is the simple laravel’s eloquent code snippet to get results in a table when there are no results for the relationship. I have two…
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.
Yii2 Default application name is “My Application”. You can change this name by editing the config/main.php. Just add the application name property in Config Array.…
Leave a CommentIn this post, I would like to show you how to create a drop-down list in yii2. This tutorial will help you to display the…
3 Commentsvar url = ‘http://www.arjunphp.com/’; $(location).attr(‘href’,url);
Leave a CommentHere is the list of type checking function in PHP. Function Description is_array() Check for array type is_bool() Check for true or false type is_float()…
Leave a CommentYou can use the fgets() function with combination of fopne() funciton to read the file line by line. $filename = “inputfile.txt”; if (file_exists($filename) && is_readable…
Leave a CommentTemplate pattern comes under behavior pattern group, as it’s used to manage algorithms, relationships and responsibilities between objects. This is an easy Pattern to understand,…
Leave a CommentThe alternative PHP tags <% (and <%=), %>, <script language=”php”>, and </script> have been removed in PHP7. Additionally the asp_tags ini directive is removed. Trying…
Leave a CommentMeteor 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 Comment