Custom Tables - Printable Version +- MyBB Codes (http://www.mybbcodes.com) +-- Forum: Mods Database (/forumdisplay.php?fid=4) +--- Forum: Requests (/forumdisplay.php?fid=16) +--- Thread: Custom Tables (/showthread.php?tid=3764) |
Custom Tables - tacodelivery - 08-06-2011 04:10 PM I've been searching for a plugin that would allow me to create custom tables with my own data. Some features I'm looking for include:
RE: Custom Tables - exdiogene - 08-06-2011 04:54 PM This could be achieved with simple MyCodes, here is an example for a 2 columns table : PHP Code:[Highlight] \[table=(.*?)\](.*?)\[/table\] PHP Code:[Highlight] \[row=(.*?),(.*?)\](.*?),(.*?)\[/row\] Then in your post you only have to write : PHP Code:[Highlight] [table=table header] You can use 2 different row Mycodes for odd/even row colors or add a fifth parameter for the color. RE: Custom Tables - tacodelivery - 08-06-2011 05:00 PM (08-06-2011 04:54 PM)exdiogene Wrote: This could be achieved with simple MyCodes, here is an example for a 2 columns table : But would I be able to specify how many rows I want to show on one page? This information will be displayed on a single php page - not a post. Is a search field also possible? I thought a MYSQL database had to be used to retrieve this information. A very similar table was designed for Wordpress under the name "WP-Tables Reloaded". RE: Custom Tables - exdiogene - 08-06-2011 06:06 PM When you do a search, all posts are searched! This seemed to be the easiest way to achieve what you need, if you have more specific needs you would have to tell me. If you need a multi-page system for a specific display of content, this would be a personal plugin and would need to be done only for you. I hope you understand that this would need to be charged separately... Send me a PM with the specifics if you want a quote... RE: Custom Tables - tacodelivery - 08-06-2011 06:51 PM (08-06-2011 06:06 PM)exdiogene Wrote: When you do a search, all posts are searched! PM sent! RE: Custom Tables - Midori - 04-27-2013 04:21 PM Hi how can I do for three row please 3 columns table RE: Custom Tables - exdiogene - 04-28-2013 07:42 AM You will simply need to expand your row MyCode like this : PHP Code:[Highlight] \[row=(.*?),(.*?),(.*?)\](.*?),(.*?),(.*?)\[/row\] And use it like this : PHP Code:[Highlight] [row=left sub-header,middle sub-header,right sub-header]left content,middle content,right content[/row] RE: Custom Tables - Midori - 04-29-2013 02:56 PM Thanks for my supporting |