Forum Moderators: coopster
My requirement is to add the counts of two tables.
$data = mysql_query("SELECT * FROM Table1")
$number=mysql_num_rows($data);
select * from table1 ; it returns 158
select * from table2; it returns 30
Now i want to have result in single query as 188
can somebody help me?