Php algoritmayı çözemiyorum

0 Cevap php

Ben bir mySql tabloda rezervasyon başına bir satır ile bir rezervasyon sistemini yapıyorum. Sabah, öğleden sonra ve akşam: Bu satır, üç sütun içerir.

reservation_id | date | morning | afternoon | evening
int(255)       |  d/t | 1/0     | 1/0       | 1/0

Aşağıdaki GUI kullanımı ile, kullanıcı eklemek veya üç farklı parçaları için daha fazla veya daha az ürün çıkarma:

example-row

I'm trying to re write any possible setting (> 0) of the numbers to as less as possible rows in my reservation table. For instance:

morning | afternoon | evening
3       | 1         | 2

dönüştürülmüş olabilir (üç + bir + iki =) mysql tabloda 6. satırlar. Ama üç satır için bu girişi dönüştürmek için daha iyi olurdu:

          | morning | afternoon | evening
row 1     | 1       | 1         | 1 
row 2     | 1       | 0         | 1 
row 3     | 1       | 0         | 0 

Could someone help me to write this algorithm? Thank you in advance! R

//reply Every row in the table is a boat. It is strange to have in the main overview three rows for the same boat each row containing the reservation for or the morning, or the afternoon or the evening.

0 Cevap