You would need to use PHP
<input type="text" /> That could be used for a username <input type="password" /> That could be used as a password.
zishy im probaly stuck what to do after the password and username is done
I think you'd have to use a form with PHP or ASP or JS or something along those lines.For example, to create a login page in PHP/HTML you need 2 pages.One to get the user input and one to make use of it (validate username and password).PAGE 1:LOGIN.HTMLname: password: PAGE 2:WELCOME.PHP
Create an HTML form with METHOD="post" and ACTION="login2.php". In login2.php check if the entered username and password are correct. You can get the username with $_POST['name_of_username_input']. The same goes for the password.
You can use html,examle: Log on form Username: Password: Hope this helps, Regards Guskit
There is no way to get your boyfriend's password without hacking into hotmail's database. I don't think you'll find anyone willing to do that, at least not for free, but good luck.
You will need a server-side language (and, obviously, a database) to accomplish that. Here's a very simple example, using PHP and MySQL. ---- <?php // Connect to MySQL and select a database (if either one fails, stop the script) $connect = mysql_connect('username', 'password') or exit('Connection failed.'); $select = mysql_select_db('database') or exit('Database Selection failed.'); // Retrieve data from the database. $sql = "SELECT `name` FROM `fruits`"; $query = mysql_query($sql); if (!$query) { exit('The query failed.'); } // Create a drop-down box. echo "<input type='select'>"; // For each row returned, create an option element for it. while ($fruit = mysql_fetch_assoc($query)) { echo "<option>"; echo $fruit['name']; echo "</option>"; } // End the drop-down box. echo "</select>"; ?>
A public HTML directory is a directory that the outside world can "see." There's one on every webserver, even if all the first page does is challenge for a username and password. If the folder wasn't public, the webserver wouldn't serve it to the browser.
There is an html form element for password. Validation script for password doesn't differ from script of html text element
There is no database tag per say in HTML. HTML is a markup language which simply means it's a way of formatting contents on a webpage. A database is a data structure that is used to house information so it can be called upon at a later time. In order to connect a database to some form of HTML, you'd need to have the database stored on the webserver and then access that database through a server side language like PHP which can orient the contents into HTML tags and be placed within your webpage. Basically, you'd need to use a programming language of some sort to bring together a database and HTML; it's not possible simply by typing in HTML tags. Sorry...
A database cannot be accessed directly by HTML. You need jars and a language like Java to connect a DB.
Yes , you can create a database using a form . But you have to do two things First make a form in html or jsp whatever you like. Then Connect the form to database using java database connectivity.Yes, we can create database with a form. First create a form using html or jsp then we can connect it to database using JDBC.