I have script that is almost done, I just need
help with one more thing.
I'll describe the relevant structure the best I can, then explain what I need.
TABLE carlot
FIELDS trackpt, id
TABLE cars
FIELD userid, carid
TABLE grpusers
FIELD id
Field id from table carlot = field carid from table cars
Field userid from table cars = field id from table grpusers
The value I need to display is in the field trackpt, what PHP code do I need to get this value (associated with the userid).
What I am trying to do is add that value to other values in the grpusers table.
Any suggestions? I'm sure this isn't difficult for people that work with php and mysql a lot but this is day 3 for me with no formal training and I'm basically tweaking code to make this work.
Any help is greatly appreciated!