Problems of Inherit form in a Table

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Php Beginner
Forum Commoner
Posts: 28
Joined: Fri Nov 04, 2011 9:04 am

Problems of Inherit form in a Table

Post 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.
User avatar
social_experiment
DevNet Master
Posts: 2793
Joined: Sun Feb 15, 2009 11:08 am
Location: .za

Re: Problems of Inherit form in a Table

Post by social_experiment »

Php Beginner wrote:...existing table was distorted when I add in the upload photo section.
Distorted how?
“Don’t worry if it doesn’t work right. If everything did, you’d be out of a job.” - Mosher’s Law of Software Engineering
Post Reply