cburwell Posted October 15, 2006 Share Posted October 15, 2006 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 More sharing options...
trq Posted October 15, 2006 Share Posted October 15, 2006 Does your template class support loops? That is your problem. Link to comment https://forums.phpfreaks.com/topic/23984-template-system-rows/#findComment-108967 Share on other sites More sharing options...
cburwell Posted October 15, 2006 Author Share Posted October 15, 2006 Would you be able to provide any information on how I could accomplish this? Link to comment https://forums.phpfreaks.com/topic/23984-template-system-rows/#findComment-109058 Share on other sites More sharing options...
trq Posted October 15, 2006 Share Posted October 15, 2006 You might want to look at getting your hands on a prebuilt template engine that supports loops. Building something like this isn't going to be explained easily within a forum reply. Link to comment https://forums.phpfreaks.com/topic/23984-template-system-rows/#findComment-109060 Share on other sites More sharing options...
cburwell Posted October 15, 2006 Author Share Posted October 15, 2006 That's what I figured. I have downloaded Smarty. Luckily it should be easy enough to chage my current scripts over to smarty. Thank you! Link to comment https://forums.phpfreaks.com/topic/23984-template-system-rows/#findComment-109168 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.