Eğer tarih seçimi için 5 dropdowns varsa (Y, m, d, h, i) nasıl PHP5 kullanarak bir datetime olarak mySQL tablo tek bir sütuna seçilen tarih ve saat eklemek istiyorsun?
Ben onlar gibi bir dize kombine gerekir biliyorum:
$DateTime="$Year-$Month-$Day $Hour:$Minute:00";
ve sonra belki strtotime kullanın:
$Date=date('Y-m-d H:i:s', strtotime($DateTime)) ;
ama nerede değişkenleri bildirmek ve nasıl ben bir sorgu gibi içine yaratırım:
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "details")) {
$insertSQL = sprintf("INSERT INTO sessions (Location1, Location2, Date)
VALUES (%s, %s, $s)",
GetSQLValueString($_POST['Location1'], "text"),
GetSQLValueString($_POST['Location2'], "text"),
GetSQLValueString($_POST[' ???? '], "date"));