所以基本上,我有两个php回声,一个有时间,一个有日期,我想加入它们并输出它开始。基本上是这样的
start: '<?php echo $row_events['date'];?>+<?php echo $row_events['time_start'];?>',
但这不起作用。提前致谢。
我认为OP只是试图将信息连接起来,因为你不会真诚地将时间和日期加在一起。
Start: '<?=$row_events['date'].' '.$row_events['time_start'];?>',
可能是我对这个问题的简单看法。
您可以尝试以下代码行
start: <?php echo $row_events['date'] . " + ". $row_events['time_start']; ?>,