Page 1 of 1

Problems of Inherit form in a Table

Posted: Fri Nov 18, 2011 7:38 am
by Php Beginner
Hi there,

I am thinking to add in one more detail into a personal information column and I having troubles when I trying to insert a form into a existing table.
My purpose is to create 1 more row for user to upload their profile photo, existing table was distorted when I add in the upload photo section.

My initial codes:

Code: Select all

<tr bgcolor="#FF9999">
<td height="22" colspan="3"><strong style="color: #FFF; font-size: 13px;">&nbsp;Personal Information</strong></td>
<tr bgcolor="#FFCCCC">
<td width="166" height="21"><strong>&nbsp;&nbsp;Name</strong></td>
<td width="12" height="21"><strong>:</strong></td>
<td width="640" height="21">
<strong id="sprytextfield1">
<label>
<input style="color: #009; font-family: Verdana, Geneva, sans-serif; font-size: 11px;" name="student_name" type="text" id="student_name" value="<?php echo $row_student['student_name']; ?>" size="40" maxlength="100" />
</label>
</strong>
</strong>
<strong style="color: #F00; font-size: 10px;">*</strong><strong class="style27 style25" style="color: #999; font-size: 10px"> eg: Sarimah Binti Abdul Rahim</strong>
</td>
</tr>
<tr bgcolor="#FFCCCC">
<td width="166" height="21"><strong>&nbsp;&nbsp;IC No</strong></td>
<td width="12" height="21"><strong>:</strong></td>
<td width="640" height="21">
<strong id="sprytextfield2">
Codes when I try to insert the upload photo section:

Code: Select all

<!-- Personal Information -->
<tr bgcolor="#FF9999">
<td height="22" colspan="3"><strong style="color: #FFF; font-size: 13px;">&nbsp;Personal Information</strong></td>
<tr bgcolor="#FFCCCC">
  <td width="166" height="21"><strong>&nbsp;&nbsp;Photo</strong></td>
  <td width="12" height="21"><strong>:</strong></td>
  <td height="21"><FORM ENCTYPE="multipart/form-data" ACTION="_URL_" METHOD=POST>
Upload this file: <INPUT NAME="userfile" TYPE="file">
<INPUT TYPE="submit" VALUE="Send File"></FORM></td>
</tr>
<tr bgcolor="#FFCCCC">
<td width="166" height="21"><strong>&nbsp;&nbsp;Name</strong></td>
<td width="12" height="21"><strong>:</strong></td>
<td width="640" height="21">
<strong id="sprytextfield1">
<label>
<input style="color: #009; font-family: Verdana, Geneva, sans-serif; font-size: 11px;" name="student_name" type="text" id="student_name" value="<?php echo $row_student['student_name']; ?>" size="40" maxlength="100" />
</label>
</strong>
</strong>
<strong style="color: #F00; font-size: 10px;">*</strong><strong class="style27 style25" style="color: #999; font-size: 10px"> eg: Sarimah Binti Abdul Rahim</strong>
</td>
</tr>
<tr bgcolor="#FFCCCC">
<td width="166" height="21"><strong>&nbsp;&nbsp;IC No</strong></td>
<td width="12" height="21"><strong>:</strong></td>
<td width="640" height="21">
<strong id="sprytextfield2">
I add in

Code: Select all

<FORM ENCTYPE="multipart/form-data" ACTION="_URL_" METHOD=POST>
Upload this file: <INPUT NAME="userfile" TYPE="file">
<INPUT TYPE="submit" VALUE="Send File"></FORM>
in the row above the student name. Purpose is to enable student to upload their own profile photo. Please help.

Re: Problems of Inherit form in a Table

Posted: Sat Nov 19, 2011 3:57 am
by social_experiment
Php Beginner wrote:...existing table was distorted when I add in the upload photo section.
Distorted how?