Can this be done in PHP?
I have a website that I've made and updated via HTML for a couple of years. I now need to have the people whom I'm doing the site for update it themselves - mostly because of time issues on my part. For all the research I've done, it sounds like PHP is the best choice to make the scripts for this.
Each page has several repeating tables. The only thing that changes is the names and other information (numbers, descriptions, etc). There is also 2 thumbails per table that when clicked on, pop up in a new window at full size. I want the user to be able to go into a page and enter the information that would poulate the table via a form...then, when they update, it fills the form and saves the info in a MySQL table (I have the ability to do this via their web hosting service). Is this possible in PHP, or is there a different thing I should use? If it is possible, can someone get me started? I'm pretty good at figuring stuff out once I'm pushed in the right direction.
Thanks in advance for any help!!!
Here's a copy of the table and what it would include:
table width="423" cellspacing="0" cellpadding="3" border="0" bordercolor="CCCCCC">
<tr>
<td colspan="4">Name</td>
<td rowspan="4"><a href="/images/image1_jpg.jpg" target="blank"><img src="/images/image1.jpg" width="100" height="75" border="0"></a></td>
</tr>
<tr>
<td>Info A </td>
<td>Info B </td>
<td>Info C </td>
<td>Info D </td>
</tr>
<tr>
<td> Result A </td>
<td> Result B </td>
<td> Result C </td>
<td> Result D </td>
</tr>
<tr>
<td> Info E </td>
<td> Info F </td>
<td> Info G </td>
<td> Info H </td>
</tr>
<tr>
<td> Result E </td>
<td> Result F </td>
<td> Result G </td>
<td> Result H </td>
<td rowspan="3"><a href="/images/image2_jpg.jpg" target="blank"><img src="/images/image2.jpg" width="100" height="75" border="0"></a></td>
</tr>
<tr>
<td colspan="4"> Info I </td>
</tr>
<tr>
<td colspan="4">Result I </td>
</tr>
</table>