MySQL has supported database views since version 5.x. Views are pretty useful if you want to refer to values calculated from expressions without writing the…
Leave a CommentTutorials / Programming tips Posts
PHP array_intersect_key() function returns an array containing all the entries of primary array which have keys that are preset in all the arguments. This function…
Leave a CommentThe MySQL database is one of the well know database engine, which uses a client-server architecture. The server, mysqld is the program that actually manipulate…
Leave a CommentIn this tutorial, you will learn how to upload files to a remote server using node js in your express js application. You can upload…
Leave a CommentIn this post I will show you, how we can create custom async validator to check for email availability, same logic you can apply for…
9 CommentsDesign patterns are very general/non specific reusable solutions or templates to solve a specific design problems in software design. Which defines how the specific classes…
1 CommentIn my recent project, I implemented PDF file encryption and decryption. In this project, data is very sensitive so to protect files from unauthorized access…
10 CommentsWe gonna use ECMAScript 2016’s new includes() method to determine whether an array contains a specific element. The new method includes(searchElement, fromIndex) function searches an…
3 CommentsIn this article, you will learn how to connect to the MySQL server database using Node Js MySQL driver. We gonna use a MySQL driver…
Leave a CommentThis tutorial provides an example of building a complete RESTful API using Laravel 5.5.* Framework. You gonna use the different HTTP methods during the REST…
36 CommentsIn this tutorial, we will discuss how to generate PDF using DOMPDF with Codeigniter Framework version 3 and composer(PHP dependency manager). From the authors of…
20 CommentsIn this article, I will demonstrate a simple example of sending emails using G-Mail SMTP in Express/ Node.js. fortunately sending emails in express/node js pretty…
3 CommentsI this post I would like to write about sub queries. A Sub-query is also a query, which is defined under a main query and…
Leave a CommentDuring the front-end development to serve static files such as images, CSS files, and JavaScript files you require web servers. and as of now, you…
Leave a CommentPromises can replace the asynchronous use of callbacks, and they provide several benefits over them. Basic Promise Usage A new Promise is created with the…
Leave a Comment