Author

A simple ASP.NET login system using C#

In this article, we will learn how to create a simple user authentication system in Asp.Net using C#. The user’s credentials will be saved in the database and will be retrieved to verify the login information. Create a login module using ASP.NET In this tutorial, The login system consists of two pages. Login Page: Login.aspx... » read more

ASP.NET Search GridView on TextChanged Event Using C#

In this article, we will learn how to search and filter the GridView by using a TextBox. The OnTextChanged event handler will fire when TextBox gets changed. To use the Text changed event you need to add the related event handler in your code and set the AutoPostBack to true through HTML. How to Search... » read more

ASP.Net MVC ViewData: Explaining ViewData with examples

You are wondering what is a viewData in MVC? In this tutorial, you will learn about ViewData objects and how we use them in ASP.NET Applications. What is ViewData in ASP.NET MVC? ViewData is an instance of the ViewDataDictionary class and is used to transfer data from the controller to view. It can be accessed... » read more

Show/Hide Text Box using JavaScript & jQuery

In this article, you will learn how to show/hide a textbox based on the user’s selection of the drop-down menu. If the user selects yes from the drop-down menu, the text box will appear. Show/Hide a TextBox in Javascript and jQuery HTML <form> <div id="drop-down" name="drop-down"> <label for="travel">Have you visited Europe before? </label> <select name="travel"... » read more

WordPress 5.2 gets the much needed security features

WordPress version 5.2, called “Jaco” in honor of popular jazz bassist Jaco Pastorius, is available for download from the official website. The new version comes with some robust tools, and a number of functional improvements, but the most important updates are related to the security features including a modern cryptography library, site health section and... » read more

How to create a custom post type in WordPress

WordPress started as blogging software and got pretty famous in that. However, since WordPress 3.0, it has earned a reputation of a content management system (CMS) with the ability to handle almost any kind of website. WordPress can be used to create anything from an online portfolio to a multi-vendor E-Commerce platform. Creating a custom post... » read more

A Beginners Guide to the Loop in WordPress

While discussing WordPress, specific themes, and plugin development, the loop is inevitably the most important concept. The loop is the heart of WordPress themes development, and when you are looking at any blog like tutorialspanel.com’s home page, you see the content fetched and displayed by the loop. An introduction to the Loop in WordPress In... » read more

Everything you need to know about CSS Box Model

If you want to be a front-end designer, you need to understand the basic concepts of CSS, like the Box model, Positions, overflow, etc. In this tutorial, I will be explaining the CSS Box Model and its usage in today’s web development. What is Box Model? No matter how simple or complex your website layout... » read more

Implementation of Binary Trees in C++

A binary tree is a data structure with a finite set of nodes consisting of: A unique node with no parents called root and zero or more subtrees. Every node can be connected to an arbitrary number of nodes, called children. Nodes with no children are called external nodes or leaves. Internal nodes are the... » read more

Introduction to DNS lookup function in PHP

In this example, you will learn about the DNS look function in PHP and how to use it. For demonstration purpose, we will create a simple HTML form which takes domain name from as the user input. The form will be submitted to practice_ac.php which contains the PHP code to lookup the DNS record of the domain... » read more

Perform a security check for your WordPress website

Planning, creating, and deploying any website can be a long and sometimes expensive process. It could be your blog, professional business website or your online business. No matter, what purpose your site is serving, it is essential to keep it secure and functional. If left unguarded, hackers can steal your information, install malicious software or... » read more

An Introduction to Arrays in PHP

In any programming language, a variable is a memory location that holds a value. It could be a number, string, an object but at a time, it can contain only one value. What if you need 20 such values, or 50 or even 100? One way is to declare and initialize those 100 variables. The... » read more

Preventing Multiple Submissions on the Server Side using PHP

The code below will help you to prevent multiple form submission from the users using PHP. First, create a web form as shown below. <?php session_start (); ?> <!DOCTYPE html> <html> <head> <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"> <style> *{box-sizing:border-box;} body{font-family: 'Open Sans', sans-serif; color:#333; font-size:14px; background-color:#dadada; padding:100px;} input{padding:5px; margin-bottom:5px; width:300px;} </style> <body> <?php if(isset($_POST['submit'])){ if (!isset (... » read more

How to create a multi-page form in PHP

When creating a multi-page form, you can save the data being entered at every step in session variables or temporary database. In this tutorial, we will be creating three different pages to save the information being entered in the session variables. Multi-page Form in PHP To get started, create a web form as shown below <?php... » read more