下面是我嘗試做如何在php中使用javascript vars?
<?php
//get time from what user input on post
$time = $_POST['time'];
?>
<script type="text/javascript">
//convert time to utc
var convertedDate = dateFormat('<?php echo $time ?>', 'isoUtcDateTime');
</script>
<?php
$query = "INSERT INTO $table (url, time) VALUES ('$url', 'convertedDate');";
mysql_query($query);
?>
我知道你不能只是把convertedDate
在那裏喜歡,所以什麼IM問的是我怎麼會去這樣做的什麼,我有<?php echo $time ?>
你的問題是「我如何創建一個PHP的日期」? – Tomalak