Jump to content

PHP datagrids


ThunderAI

Recommended Posts

Wait, graphing or just displaying data?

 

Also, what do you mean "across many different tables"?

 

Just displaying table data in row format. By many different tables i mean it can support tables that have primary and child key fields, like in InnoDB tables.  And the code can be reused for a different table by chaning only a few lines of code.

Link to comment
https://forums.phpfreaks.com/topic/111272-php-datagrids/#findComment-571181
Share on other sites

there's one in my sig

 

That looks good, what about the following situation

 

tbl_users

> user_id

> user_name

 

tbl_activity

> activity_id

> activity_user_id

 

SELECT * FROM tbl_activity

INNER JOIN tbl_users ON tbl_users.user_id = tbl_activity.activity_user_id

 

Can your table do the relation of those two tables automatically or how do i pass what fields I want displayed?

Link to comment
https://forums.phpfreaks.com/topic/111272-php-datagrids/#findComment-571268
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.