saradrungta Posted December 12, 2008 Share Posted December 12, 2008 hi... how we can creat different table in HTML...... i mean different then that of tredisional tables Link to comment https://forums.phpfreaks.com/topic/136685-customised-table/ Share on other sites More sharing options...
Mark Baker Posted December 12, 2008 Share Posted December 12, 2008 First off, its an HTML question rather than a PHP question Secondly, what do you mean? I don't even know what you'd consider a traditional table, because even that can be pretty complicated. Link to comment https://forums.phpfreaks.com/topic/136685-customised-table/#findComment-713721 Share on other sites More sharing options...
priti Posted December 12, 2008 Share Posted December 12, 2008 traditional tables!!!! Every table is created with <table><tr><td> I never came across other types of table. Will you please let us know what exactly you in search for !! Link to comment https://forums.phpfreaks.com/topic/136685-customised-table/#findComment-713727 Share on other sites More sharing options...
saradrungta Posted December 12, 2008 Author Share Posted December 12, 2008 i mean some thing like having circular ends...... Link to comment https://forums.phpfreaks.com/topic/136685-customised-table/#findComment-713730 Share on other sites More sharing options...
Mark Baker Posted December 12, 2008 Share Posted December 12, 2008 i mean some thing like having circular ends......CSS then, rathe rthan PHP.... but when you post a question there, be a bit more specific about exactly what you mean Link to comment https://forums.phpfreaks.com/topic/136685-customised-table/#findComment-713735 Share on other sites More sharing options...
dmccabe Posted December 12, 2008 Share Posted December 12, 2008 The more detail you give us about your problem, the more helpful we can be when answering. As already mentioned, what you need is html and CSS eg: HTML <table class="test"> <tr> <td> </td> </tr> </table> CSS .test { bgcolor: #FF0000; } .test tr { text-decoration: underline; } Link to comment https://forums.phpfreaks.com/topic/136685-customised-table/#findComment-713741 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.