[FX.php List] Combine two sets of search results into one table?

BEVERLY VOTH beverlyvoth at gmail.com
Fri Jul 20 08:50:50 MDT 2012


Denis, you can merge the arrays with PHP

OR
you can just make one table and put these together on output (that is, if you don't need to merge them in some other way with sorts, etc.)

TABLE
	foreach (first query results) {
		TR..
	}
	foreach (second query results) {
		TR..
	}
/TABLE

Beverly

On 20 Jul 2012, at 10:00 AM, Denis Somar wrote:

> This is just for outputs sake.  I have two tables Requests and Quotes and rather than displaying two separate tables with results I was trying to determine if I could show query results from each table in one combined HTML table



More information about the FX.php_List mailing list