Here’s the Code that I have used for maintaining the scroll of web page I have visited Previously using localStorage. $(function () {/scroll maintaining states/var storedResult = localStorage.getItem("location");var storedURL = localStorage.getItem("url");if (storedURL !== 'undefined' &&…
Posts published in “Web Development”
Flask provides an easy solution and code for file uploading, we here learn how to upload file in Flask from a local machine to a server by using flask from an HTML file. In this…
In this tutorial, we are going to learn web development with Python using the Flask framework. We have already learned about routing and basic requirements of the flask setup earlier, if you have not read…
Python is a beginner’s favorite programming language, We use python for different purposes like to build software, servers. Python is also used for web development as a server to create a web application. Python is…
In this tutorial, you will know how to export a query result in excel CSV from MySQL PHPMyAdmin. Sometime we need to just export the query result in excel or csv for reports purpose or…
Sometime while working with function in php, we want to know that how many argument is passing in a function or a variable parameter. For solving this situation we need to count the variable parameter…
In this tutorial, we are going to know how to send emails using Sendgrid in PHP. SendGrid is a customer communication platform marketing email. For PHP, SendGrid also provides its library that can be used…
In this tutorial, we are going to upload an excel file and parse its data and store it in a database by using SimpleXLSX. SimpleXlsx Class Parse and retrieve data from Excel XLSx files, and…