trying to think of a way to word the title without it being too long
Okay.. First, example.
<table>
<tr>
<td>id</td>
<td>Name</td>
<td>Description</td>
<td>Content</td>
<td> </td>
</tr>
<tr>
<td>1</td>
<td>Test Post</td>
<td>This is the first post...</td>
<td>Blah blah blah blah blah...</td>
<td><a href="#">Edit</a> <a href="#">Delete</a></td>
</tr>
<tr>
<td>2</td>
<td>Test Post 2</td>
<td>Another test post...</td>
<td>Yeahhh whatever.</td>
<td><a href="#">Edit</a> <a href="#">Delete</a></td>
</tr>
</table>
Second, description.
Riight.. you may be familiar with the kind of system I'm looking at at the moment. Basically, I'm failing trying to make a custom CMS and I'm only a newbie / noob so I need some help learning the ropes, for example what I'm trying to do here.
What I want to do is make a table that automatically updates with a new row for each new id, obviously unless a post is deleted the id's will always be consecutive.
Any help?
Thanks,
Edwin Okli