Hi…
Im new to php…I designed 3 forms and 3 tables
This is my form1.php
<form action="" method="post" enctype="multipart/form-data" name="ActivityPhoneCallForm" target="_self">
<table border="1">
<tr>
<td width="418"> Current User :
<input name="CurrentUser" type="text" disabled id="UserId" size="35" maxlength="35" readonly class="disabled" />
<br /> Activity : 
<input name="LogActivity" type="text" disabled id="ActLog" size="35" Value=" Phone Call" maxlength="35" readonly class="disabled" />
</td>
<td width="470" > Purpose :
<textarea name="PhCallPurpose" id="CallPurpose" cols="42" rows="1"></textarea>
</td>
</tr>
</table>
<br />
<table width="900" border="1">
<tr>
<td><span id="spryradio1">
<br />
<label> Select Client :    
<input type="radio" name="ClientOption" value="yes" id="ClientOption_0" checked="checked" onclick="SetEnable('ExisClientDiv','NewClientTag')" />
Existing Client</label>     
<label>
<input type="radio" name="ClientOption" value="no" id="ClientOption_1" onclick="SetEnable('NewClientTag','ExisClientDiv')"/>
New Client</label>
<br />
<br />
</span> <div id="ExisClientDiv">            Select Existing Client :
<select name="ExistingClient" id="ListClient" readonly ></select>   
<input name="SubmitClientName" type="button" value="Display Jobs" class="EmpFormButton"/></div>
            
<a id="NewClientTag" href="#" style="visibility: hidden" target="_new">Create New Client Data</a></td>
</tr>
</table>
</form>
*When User login the username should be displayed in the Current user field and
*i created client table with C_name,all the c_name should be displayed in the drop down list in the form1.php field
*should i do the form field validation…is that important??
How to implement this??
Please help me