Hello,
I am new with DHX components. I have a calender to pick a date and send this to a database. With succes a read the date and set these one as the date in the calendar. Send the new selected date back to the database is not working
This is my code
<?php
include('db_script/db_connect.php');
if($_SERVER['REQUEST_METHOD']=="POST") {
$SDag = $_POST['SDag'];
$sql = "UPDATE tbl_EParameter SET WDag = ".$SDag." WHERE NrRecord = 1" ;
$con->query($sql) ;
} ;
?>