多日期选择器 - 通过 $_POST 发送日期时出现问题

Multi Dates Picker - having problems sending dates through $_POST

在此先感谢您的帮助!

我在从多日期选择器日历中通过 $_POST 发送日期时遇到问题...这可能是我看不到的非常简单的事情!

前端代码:

   <form method="post" action="add_new_date.php">
   <div id="simpliest-usage" name="simpliest-usage"></div>
   <script>
       $('#simpliest-usage').multiDatesPicker();
    </script>
    <input type="submit">
    </form>

日历显示正常。

操作页面上的代码:

    <?php
    echo $_POST['simpliest-usage'];
    ?>

首先尝试在屏幕上显示它们,确保通过正确的日期!

非常感谢任何帮助。

非常感谢!

再次查看您的代码,而不是使用名称为 simpliest-usage 的 div 文本框 只需将其替换为表单元素文本框,它将通过 post

发送数据
<div id="simpliest-usage" name="simpliest-usage"></div>
// change this line

 <input type ="text" id="simpliest-usage" name="simpliest-usage" readonly/>