Hi guys,
I am working on something that is driving me crazy, I'm just trying to get my php skills better and so the help with this or guide in the right direction will be a greatly appreciated.
the script for this looks like this
<html>
<head>
</head>
<body>
<table width="100%" border="1">
<th>Add Person</th>
<th>Edit / Delete person</th>
<tr valign="top">
<td width="50%">
<table>
<tr>
<td colspan="2">
</td>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
<tr>
<td>
Last Name:
</td>
<td>
<input type="text"/>
</td>
</tr>
<tr>
<td>
First Name:
</td>
<td>
<input type="text"/>
</td>
</tr>
<tr>
<td>
Birth Date:
</td>
<td>
<select>
<option>Month</option>
</select>
<select>
<option>Day</option>
</select>
<select>
<option>Year</option>
</select>
</td>
</tr>
<tr>
<td>
Picture
</td>
<td>
<input type="file"/>
</td>
</tr>
<tr>
<td>
email
</td>
<td>
<input type="text"/>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="button" value="add person"/>
<input type="button" value="clear form"/>
</td>
</tr>
</table>
<br />
<td width="50%">
<table>
<tr>
<td>
Select a person:
</td>
<td>
<select>
<option>Choose person</option>
</select>
</td>
</tr>
<tr>
<td colspan="2" align="center">
OR
</td>
<tr>
<td>
Search:
</td>
<td>
<input type="text"/>
</td>
</tr>
</tr>
<tr>
<td>
Enable Editing:
</td>
<td>
<input type="checkbox"/>
</td>
</tr>
<tr>
<td>
Last Name:
</td>
<td>
<input type="text"/>
</td>
</tr>
<tr>
<td>
First Name:
</td>
<td>
<input type="text"/>
</td>
</tr>
<tr>
<td>
Birth Date:
</td>
<td>
<select>
<option>Month</option>
</select>
<select>
<option>Day</option>
</select>
<select>
<option>Year</option>
</select>
</td>
</tr>
<tr>
<td>
age:
</td>
<td>
<input type="text" size="2" readonly="readonly"/>(always read only)
</td>
</tr>
<tr>
<td>
Current Picture<br/>(150px x 150px)
</td>
<td>
<div style="width:150px;height:150px;border-style:solid;border-width:1px;text-align:center;">
<span style="font-size:24pt;">current<br />image<br />will go<br />here</span>
</div><br/>
</td>
</tr>
<tr>
<td>
New Picture
</td>
<td>
<input type="file"/>
</td>
</tr>
<tr>
<td>
email
</td>
<td>
<input type="text"/>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="button" value="update person"/>
<input type="button" value="delete person"/>
</td>
</tr>
</table>
</body>
</html>
its pretty much a form (created with php) where you enter your information and upload a picture..
then you select a persons name and the information is shown with the picture..
the help for this will be a HUGE help!