In this post, I will explain how to create a react application and how to fetch the URL in React.js application. We are going to create a single page app using React.js for this we will use Create-React-App project to set everything set up. Create a New React App: Earlier I have explained how to …
Author: Anil Kumar Panigrahi
Pretty printing of JSON using PHP and Javascript
In this post, I would like to explain how to display JSON data in a pretty way. In the earlier posts, I have explained how to create API. This post is extended to display JSON, so that easy to understand and readable. To print the JSON data pretty way we have two approaches, we can …
Why You Need a VPN Chrome Extension – A Beginner’s Guide
Hi all, in the earlier, I have explained how to create Google Chrome app. This is VPN Chrome Extension. A one-click solution to online privacy and security Although Chrome is arguably the most secure browser to surf the world wide web with, it is not designed to protect the security and privacy like Tor. This …
Sending HTML template emails using SMTP in NodeJS
In the earlier posts, I had explained how to send emails in CodeIgniter. Now I would like to explain how to send HTML template emails using SMTP in NodeJS. Create HTML file with inline styles, In the earlier posts, I had explained how to use the HTML tags in the page. So prepare the HTML …
Cannot read property ‘settings’ of undefined – jQuery snippet to solve the issue
Hi All, In this post, I would like to share my thoughts how to resolve the issue Cannot read property ‘settings’ of undefined in jQuery. It might be simple. But it took time to resolve this issue. It will easy for you when you stuck with these issues. Generally, we add the jQuery attribute to …
How to make revisions of your content using PHP
There are many ways to maintain the revisions using PHP and MySQL. I am going to explain with a small example for how to make revisions of your content using PHP. Take database tables as contents table: — — Table structure for table `contents` — CREATE TABLE `contents` ( `id` int(11) NOT NULL, …
Display data in HTML 5 table from MySQL using PHP
In this post, we would learn how to display the data in HTML 5 table format from the database MySQL using PHP. Earlier we have learned how to install MySQL and how to use MySQL into our PHP application. Sample MySQL database Before connecting to database we need to create database. An example I have …
How to integrate Google reCAPTCHA for your form with validation
In this post, I would like to explain about how to integrate Google reCAPTCHA for your form with validation. For that, we need to register our domain to Google. Please go to below URL to integrate it. Then we will get the site key. https://www.google.com/recaptcha/admin#list once you provide the domain names, we will get sitekey …
How to install visual studio code in Ubuntu for PHP development
Microsoft announced opensource editor for Ubuntu i.e. visual studio code. In this post I would like to explain about how to install visual studio code in Ubuntu and install extensions for PHP development. It is easy to use and have plenty of options for write code. Download and installation Steps: Download from the URL https://code.visualstudio.com/download …
How to read the config file data in the application of Codeigniter
In the earlier posts we learned about how to create baseurl, custom library, sending email in Codeigniter. Now we can learn about how to read the config file data in the complete application of Codeigniter. It is very tiny but useful when we need to use any variable in several times in the application. Below …