I have three tables in mysql (localhost):
customer, comprising columns(id,name,email,create_date,status);sell, comprising columns(id,s_code,email,dateOut,total_price); andcontrol, comprising columns(id,timeIn,timeOut,email,ip).
Using a PHP while loop, how can I show output from my 3 tables in <td> elements?
Here is a query writen to get all rows from your table.
and that will select all your data inside all your tables in a single query, look through them with the while loop (you should change how the table looks and number of tds) and when its done, it will echo it all out.
good luck. =)