I'd like to exhibit a list with two recordsets.
To each line of first recordset I'd like to show the related lines of second recordset.
Something similar to ".Filter" property in ASP.
Do Somebody help me?
Is this related to PHP somehow (i.e. are you asking how you'd do the equivalent of ASP .filter in PHP?) And what DBMS are you using?
Yes. I'd like to make the equivalent of ASP .filter property in PHP.
In fact, I know ASP and I have tried to migrate my programs to PHP.
I'm using MySQL.
Just write the SQL statement for what you want, e.g.:
select table1., table2. from table1, table2 where table1.link = table2.link and table1.some_field = 'target';