MySQL veritabanına eklemek için PHP gün, ay ve yıl birleştirmek gerekiyor. Ben gün, ay ve yıl olacak kombine nasıl? Ben bir damla menüden tarih seçiyorum.
Yyyy-mm-dd, bu yüzden her gün, ay ve yıl boyunca seprate açılan çıkışlar kullanıyorsanız, bunu gibi onları cocatenate yapabilirsiniz: MySQL bu formatta tarih bekliyor:
$date = $_POST['year'] . '-' . $_POST['month'] . '-' . $_POST['day'];
If your form's method is 'get' instead of 'post', then substitute $_POST with $_GET in the code. Also make sure the value is set correctly for days 1 to 9 as 01 to 09 and you use a two digit value - the same for month. I.e.
<select name="month">
<option value="01">1</option>
...
</select>