Hi All.
I'm new in PHP. I created form for web page and connected that page to MS SQL database. I don't know how to put database data to according cells. For instance, to get data for Classroom, Date, ets.
Code:
<form action="" method="post" name="frmInfo">
<table width="100%" border="0" cellpadding="2" cellspacing="0">
<tr>
<td> </td>
<td>Classroom</td>
<td colspan="2"> </td>
<tr>
<td> </td>
<td>Date</td>
<td colspan="2"> </td>
<tr>
<td> </td>
<td>Salary</td>
<td colspan="2"> </td>
<tr>
<td> </td>
<td>Other</td>
<td colspan="2"> </td>
</tr>
</table>
</form>/
I will appreciate if somebody show me example how to do it.
Thanks.