ok help on this im making a login for my company so whenever someone sign up i can add their username and password in the database and they can login and see how their website is coming along can anyone give me a idea how i can make it in php i know u add the user names in phpmyadmin then u make the form but can anyone give me a example how i would write the code in php to get me started plz thanks id appreicate it a lot and id be happy
heres my code for the form
<form name="form" method="post" action="">
<table width="100%" border="0" cellspacing="3" cellpadding="0">
<tr>
<td width="76" class="fieldTitle">Username</td>
<td width="709">
<input name="username" type="text" class="textField" id="username" value="" maxlength="8">
</td>
</tr>
<tr>
<td width="76" class="fieldTitle">Password</td>
<td>
<input name="password" type="password" class="textField" id="password" maxlength="6">
</td>
</tr>
</table>