crimage
Posts: 5
|
| Posted: 01/04/2005, 4:54 AM |
|
anyone who has any idea how i can create a mail from two tables ?
the two tables have client_id-field in common.
how do i do this?
I tried a lot of things, but can't figure it out at the moment.
All help would be greatly appreciated.
|
 |
 |
RonB
Posts: 228
|
| Posted: 01/09/2005, 7:22 AM |
|
I haven't tried this but in general you should be able to acces any grid after declaring it global:
global $grid1;
global $grid2;
$grid1->some_field->GetValue();
$grid2->some_field->GetValue();
|
 |
 |
|