hey there again,
is it possible to add lots of results together... let me give an example so it makes more sense.. im talking about the returned objects/arrays (i prefer to use objects)
$MySQLObject <==== pre initilized
$MySQLQuery = "Select Name, Address FROM ukcustomers WHERE = 'Purchased>100' LIMIT 0, 60";
$MySQLResult = mysql_query($MySQLQuery, $MySQLObject) or die(mysql_error());
$UK_Customer_List = mysql_fetch_object($MySQLResult);
ok now from that i have the customer list from the uk where they have purchased over 100.... so now if we want to get US ones..
$MySQLObject <==== pre initilized
$MySQLQuery = "Select Name, Address FROM uscustomers WHERE = 'Purchased>100' LIMIT 0, 60";
$MySQLResult = mysql_query($MySQLQuery, $MySQLObject) or die(mysql_error());
$US_Customer_List = mysql_fetch_object($MySQLResult);
ok so now we have $UK_Customer_List and $US_Customer_List, both have EXACTLY the same tables, just different contents.. now is there any way to merge the UK data retrieved with the US one in one object?
so i could have 1 variable called $Complete_Customer_List thats full of both US/UK data?
hope that makes sense....