I need to show you step by step what I've done so far and what the output I am looking for to happen.
First of all I have a table called stores as follows :
id | store_name
1 S1
2 S2
3 S3
4 S4
And EACH store_name has its own table that contains item number, qty, cost, sell price and date - One of them as follows :
Table Name : S1
id | item_no | qty | cost | sell | date
1 b1001 10 6 12 2015-3-31
2 b1002 12 6 12 2015-3-31
3 b1003 6 3 6 2015-3-30
4 b1004 4 5 10 2015-3-30
And so on for each store_name table.
What I'm aiming for is that I need an output to compare each Item number how many qty for each store and list them next to each other as follows :
item_no | cost | sell | S1 | S2 | S3 | S4
b1001 10 12 10 9 8 N/A
b1002 6 12 6 3 N/A N/A
b1003 3 6 6 6 N/A 12
b1004 5 10 4 N/A 10 10
Please note, the above stores are chosen up by the user request (it could be one store name, or could be all of them) as follows:
<form method="POST" action="Somewhere.php">
//Looping To show how many stores
<input type=checkbox name=store[] value={$row['stores_name']} style='width:20px; height:20px;'>{$row['stores_name']}
//End of Looping
</form>
After submitting to Somewhere.php , we have to find out which store selected by doing foreach loop:
$allstore = $_POST['store'];
foreach ($allstore as $store=>$value) {
//Don't Know what code should be here
}
I've tried doing my own way, but it lists store_name tables on top of each others, by which its not what I aimed for. Is there a way to do it ? Any other suggestions?
Please Note: COST and SELL prices are the same for all stores!
Aucun commentaire:
Enregistrer un commentaire