Jump to content

Template system & rows


cburwell

Recommended Posts

I have a template class that I wrote (following a tutorial I found) that I am using for a website I am creating.

What I need to do is select everything from a table and then display each row from the DB in it's own row in an HTML table. I have template tags set up for each cell in the db table, like so:

[code]
<tr>
    <td><a href="{edit_link}">Edit</a></td>
    <td>{title}</td>
    <td>{poster}</td>
    <td>{date_posted}</td>
  </tr>
[/code]

A standard while look does not seem to work, since it does not produce the desired output. Does anyone have any ideas on how I can go about this? I am sorry if I am being vague. It's late, and I need some sleep. If you need more information let me know and I will post the information.
Link to comment
https://forums.phpfreaks.com/topic/23984-template-system-rows/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.