Im not sure if this can be done in php/mysql/dreamweaver, but I know it works in asp.
To make things simple let's say that I have two tables customers and orders:
customer orders
id name custID orderedThing
1 bob 1 book
2 sally 2 ruler
3 jeff 1 pencil
3 protractor
I want to display the results in a nested recordset like this:
1 bob
book
pencil
2 sally
ruler
3 jeff
protractor
Is there a way to do this with dreamweaver/php/mysql/apache?
Thanks in advance for any input.
To make things simple let's say that I have two tables customers and orders:
customer orders
id name custID orderedThing
1 bob 1 book
2 sally 2 ruler
3 jeff 1 pencil
3 protractor
I want to display the results in a nested recordset like this:
1 bob
book
pencil
2 sally
ruler
3 jeff
protractor
Is there a way to do this with dreamweaver/php/mysql/apache?
Thanks in advance for any input.