Article
Checkboxes are one of the several types of input fields we use very commonly to allow users to interact with web pages and typically POST data to a backend, by checking any box that applies to a given situation. As opposed to Radio Buttons (which belong to Radio Groups) -...
David Landup
Flask is one of the most popular Python web development frameworks. It's a lightweight web framework, yet it offers a variety of built-in methods that can be used for hassle-free deployment of efficient web applications. In this guide, we will get the IP address of the user who visits the...
Mohammad Waseem
Query Parameters are part of the Query String - a section of the URL that contains key-value pairs of parameters. Typically, parameters are sent alongside GET requests to further specify filters on the operation: www.example.com/search?name=John&location=Miami The parameters are defined after the ? character...
Flask is a great micro-framework for Web Development in Python, and allows you to be extremely minimal. A working REST API can be served up in seconds through a few lines of code: from flask import Flask, request app = Flask(__name__) @app.route('/') def hello(): return 'Hello!...
The World Wide Web facilitated the transfer of huge amounts of data between networked computers, and it's a community that creates and shares data in abundance. This data can take various forms and shapes, and some common human-interpretable format are images, videos, and audio files. Users are so used to...
Cansın Güler
In this article, we will see how to use MongoDB, a non-relational database, with Django, a Python Web Framework. Django is commonly used with PostgreSQL, MariaDB or MySQL, all relational databases, due to its ORM under the hood. MongoDB, being quite flexible, is commonly paired with lightweight frameworks such as...
Lazar Ristic
Form validation is one of the most essential components of data entry in web applications. Users can make mistakes, some users are malicious. With input validation, we protect our app from bad data that affects business logic and malicious input meant to harm our systems Trying to process unvalidated user...
Ruslan Hasanov
Websites generally need additional files such as images, CSS, and JavaScript files that are necessary to render complete web pages in a browser. In small projects, we can work our way around by providing absolute paths to our resources or by writing inline CSS and JavaScript functions in the HTML...
Muhammad Hashir Hassan
© 2013-2025 Stack Abuse. All rights reserved.