logo CBCE Skill INDIA

Welcome to CBCE Skill INDIA. An ISO 9001:2015 Certified Autonomous Body | Best Quality Computer and Skills Training Provider Organization. Established Under Indian Trust Act 1882, Govt. of India. Identity No. - IV-190200628, and registered under NITI Aayog Govt. of India. Identity No. - WB/2023/0344555. Also registered under Ministry of Micro, Small & Medium Enterprises - MSME (Govt. of India). Registration Number - UDYAM-WB-06-0031863

How to use sticky form in PHP?


How to Use Sticky Form in PHP
 

In PHP, a "sticky form" refers to a form that retains and displays the values that the user entered, even after a submission attempt that resulted in an error. This is a user-friendly approach, as it helps users correct their mistakes without having to re-enter all the form data.

 

Here's a step-by-step guide on how to create a sticky form in PHP:

 

  1. Create the HTML Form: Start by creating the HTML form. Include the necessary input fields, and set the value attribute of each input to the corresponding PHP variable that holds the user's input.

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Sticky Form Example</title>
    </head>
    <body>
        <form method="post" action="process_form.php">
            <label for="username">Username:</label>
            <input type="text" id="username" name="username" value="<?php echo isset($username) ? $username : ''; ?>" required>
    
            <label for="email">Email:</label>
            <input type="email" id="email" name="email" value="<?php echo isset($email) ? $email : ''; ?>" required>
    
            <input type="submit" value="Submit">
        </form>
    </body>
    </html>
  2. Handle Form Submission in PHP: Create a separate PHP script to handle the form submission (process_form.php). Check if the form is submitted, validate the input, and display any errors. If there are errors, store the user's input in PHP variables.

    <?php
    if ($_SERVER['REQUEST_METHOD'] === 'POST') {
        // Retrieve form data
        $username = $_POST['username'];
        $email = $_POST['email'];
    
        // Validate form data (you can add your validation logic here)
    
        // Example: Check if the username is not empty
        if (empty($username)) {
            $errors[] = 'Username is required.';
        }
    
        // Example: Check if the email is valid
        if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
            $errors[] = 'Invalid email address.';
        }
    
        // If there are no errors, process the form data (e.g., save to a database)
        if (empty($errors)) {
            // Process the form data (e.g., save to a database)
            // Redirect to a success page or do any other necessary actions
            header('Location: success.php');
            exit();
        }
    }
    ?>
    
    <!-- Display the form with errors and sticky values -->
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Sticky Form Example</title>
    </head>
    <body>
        <form method="post" action="process_form.php">
            <label for="username">Username:</label>
            <input type="text" id="username" name="username" value="<?php echo isset($username) ? htmlspecialchars($username) : ''; ?>" required>
            <!-- Display username error if exists -->
            <?php if (!empty($errors) && empty($username)) {
                echo '<p style="color: red;">' . $errors[0] . '</p>';
            } ?>
    
            <label for="email">Email:</label>
            <input type="email" id="email" name="email" value="<?php echo isset($email) ? htmlspecialchars($email) : ''; ?>" required>
            <!-- Display email error if exists -->
            <?php if (!empty($errors) && empty($email)) {
                echo '<p style="color: red;">' . $errors[1] . '</p>';
            } ?>
    
            <input type="submit" value="Submit">
        </form>
    </body>
    </html>

    Note that htmlspecialchars() is used to prevent potential security issues by escaping special characters in the input values.

 

This example provides a basic structure for creating a sticky form in PHP. You can customize it further based on your specific requirements and validation rules.

 

Thank you.

Popular Post:

Give us your feedback!

Your email address will not be published. Required fields are marked *
0 Comments Write Comment