Posts

Showing posts from November, 2025

Test case

Test Case Table Login Test Cases TEST CASE TEST DATA DATA DESCRIPTION EXPECTED ACTUAL RESULT Login xxx@gmail.com Check customer login with valid data. Should get login email id correct Valid Pass Login xxx@gmai l.com Check customer login with valid data Should get login email id incorrect Invalid Fail Login xxx@g mail.com Check login valid data is incorrect Should get login email id incorrect Invalid Fail Login abcdef Check username is filled or not Should get login email id correct Invalid Fail Login xxx@23 Check customer login password with valid data Should get password is correct Valid Pass Login xxx@23 Checks customer ...

PHP 4 to 10

Program 4 Read form data   <!DOCTYPE html> <html> <head>  <title> PHP Form </title>  <style>  #field-container { width: 300px; margin: 50px auto; }  input, select, textarea { width: 100%; padding: 5px; margin-top: 2px; box-sizing: border-box; }  </style> </head> <body>  <div id="field-container">  <h2> Reading Form Data </h2>  <?php   if ($_SERVER["REQUEST_METHOD"] == "POST") {  $name = $_POST['name'];   $gender = $_POST['gender'];   $hobbies = isset($_POST['hobbies']) ? implode(', ', $_POST['hobbies']) : 'None';  $comments = $_POST['comments'];   $branch = $_POST['branch'];  echo "<h3>Submitted Data:</h3> Name: $name<br>Gender: $gender<br>Branch:  $branch<br>Hobbies: $hobbies<br>Comments: $comments<br>";  } else {?>  <form action="" method="post...