Hi i have made a web page in html in which i want as user enters his data and press a button load then computers MAC id,CPU id and Motherboard id is automatically inserted in the check boxes.if u have any idea how to do it then tell me
This is my html code
<html>
<body bgcolor="#FFB6C1">
<h1>
<font size="15" face="Monotype Corsiva" color="black">
<center>My First Web Page</center></font></h1>
<form>
<table>
<tr>
<td width="50%"> First Name: </td>
<td> <input type="text"/> </td>
</tr>
<tr>
<td width="50%"> Last Name :</td>
<td> <input type="text"/></td>
</tr>
<tr>
<td width="50%"> Organization Name:</td>
<td> <input type="text"/></td>
</tr>
<tr>
<td width="50%">Email:</td>
<td><input type="text"/></td>
</tr>
<tr>
<td width="50%">Contact Number:</td>
<td><input type="text"/></td>
</tr>
<tr>
<td width="50%">Duration in years:</td>
<td><input type="text"/></td>
</tr>
</table>
<br/>
<input type="radio"/>Extend<br/>
<input type="radio"/>Read Only<br/><br/>
<input type="button" value="load"/>
<table>
<tr>
<td width="50%">MAC ID:</td>
<td><input type="text"/></td>
</tr>
<tr>
<td width="50%">CPU ID:</td>
<td><input type="text"/></td>
</tr>
<tr>
<td width="50%">MotherBoard ID:</td>
<td><input type="text"/></td>
</tr>
</table>
</form>
</body>
</html>
thanx in advance.