i have two textfield..one for show datepicker and another one for time.. but i want after input to DB they can combine become one field inside DB..so that i set field type as datetime...
Onları birleştirmek için .. ben .. bu benim kod process.php sayfa içinde bazı manipülasyon yapıyorum:
$sql = "INSERT INTO inspection_report ";
$sql.= "(Model,Serial_number,Line, Shift,Inspection_datetime,Range_sampling,Packing, ";
$sql.= "Accesories,Appearance,Tuner,General_operation,Remark, ";
$sql.= "NIK,Time_inspection) ";
$sql.= "VALUES ('";
$sql.= $Model."','".$Serial_number."','".$Line."','".$Shift."','".STR_TO_DATE("'".postVar('insp_date')." ".postVar('time')."'","%M/%d/%Y/ %T")."','".$Range_sampling$
$sql.= $Accesories."','".$Appearance."','".$Tuner."','".$General_operation."','".$Remark."','";
$sql.= $NIK."','".$Time_inspection."')";
ama o göstermek hata "PHP Ölümcül hata: tanımlanmamış işlev STR_To_DATE Çağrı ()" .. ne ben onları hatasız birleştirebilirsiniz yapmak için ne yapmalısınız?