Author: BIM Notes
2nd semester Result 2023 pdf
Download pdf
Continue ReadingUnit 3 Physical Layer
3.4.3 Digital Transmission Digital transmission is the transmission of binary electrical or light pulses in that it only has two possible states, a 1 or a 0. The most commonly encountered voltage levels range from a low of +3/−3 to a high of +24/−24 volts. Digital signals are usually sent over wire of no more […]
Continue Reading6th sem Pre Board 2024
SDC NCC KIST St xavier’s SPA
Continue ReadingPHP New Syllabus Model Question solution
Group A Group B 14 Accessing user credentials should be done securely and with respect to user privacy. Generally, user credentials, such as usernames and passwords, are collected through a form on a web page and then processed on the server side using PHP. Here’s a basic example: HTML Form (login_form.html):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<html> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Login Form</title> </head> <body> <form action="process_login.php" method="post"> <label for="username">Username:</label> <input type="text" id="username" name="username" required> <label for="password">Password:</label> <input type="password" id="password" name="password" required> <button type="submit">Login</button> </form> </body> </html> |
[…]
Continue Reading