Jump to content

Need some advice about php application


phpN008

Recommended Posts

Hello to all php freaks.

 

I post here because I have some problems with app design. I want to design simple statistical app. I find myself stuck at DB design. I would be very grateful if someone gives me even some hints or simple advice about my problem.

 

i want to make app that actually looks like excel table where user can define how many rows and columns he needs, because not all people needs exact number of rows/columns, and of top of that i need to sum every row separately and every column separately. Statistic is kept at daily basis, and must be transparent, so i should store all those numbers somewhere for possible inspection later, but don't know where (except totals), i don't know where to start with this. 

 

Other things like login, choosing dates and etc. are no problem.

 

so i would like to make app that can do this on picture and that can expand table with new rows and columns if necessary.

 

statbook.jpg

 

 

 

thanks in advance 

Link to comment
Share on other sites

Store column/row coordinates, and only the ones that actually have data. That way there's really no limit on how many rows or columns there are besides the ones you may (arbitrarily) impose yourself.

 

I've never had to tackle the problem of storing different types of data as one logical unit (ie, A2 is "Books" while B2 is 12) but the best solution I know is like

col | row | type | strval     | intval | floatval
----+-----+------+------------+--------+---------
  2 |   1 | str  | staff      |        |
  3 |   1 | str  | students   |        |
  4 |   1 | str  | professors |        |
  1 |   2 | str  | Books      |        |
  2 |   2 | int  |            |     12 |
  3 |   2 | int  |            |      3 |
...
(You'd need to include a reference to the "spreadsheet" each piece of data belongs in.)

 

A SUM would be a matter of

-- column
SELECT SUM(intval + floatval) FROM table WHERE spreadsheet = (wherever) AND col = (column) AND type IN ("int", "float")

-- row
SELECT SUM(intval + floatval) FROM table WHERE spreadsheet = (wherever) AND row = (row) AND type IN ("int", "float")
Formulas would be handled a little differently: you'd store a "formula" somewhere and use that to calculate the cell's value. You could store that value in the same table as the other data but then you'd have to worry about recalculating it if the source numbers changed.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.