I http://www.dynamicdrive.com/dynamicindex6/dhtmlcount.htm olarak aşağı saymak komut dosyası bulundu
Ben sadece bir tarihi tanımlar ama ben js dosyasının içine bu php / mysql sorgusu tarihe geçmek çalıştığınızda, bundan sonra ilk kayıt değil sadece çalışır, düzgün çalışır.
<script type="text/javascript" src ="time.js"></script>//this is the script from the above link. this directly gets todays date inside this code
<?php
$result = mysql_query("SELECT * FROM my_table LIMIT 10") or die(mysql_error());
while($row = mysql_fetch_array( $result )) {
$id = $row['id'];
$title = $row['title'];
$date = date("F d, Y", strtotime($row['date']));
echo '<tr><td>';
echo $title;
echo "</td><td>";
echo $id;
echo "</td><td>";
echo $date; //display the date directly from the table as June 25, 2010
echo "</td><td>";
?>
<!-- this js code and the div is to show the countdown from today like 3D 2H 5M 45-->
<div id="container"></div>
<script type="text/javascript">
var futuredate=new cdtime("container", "<?php echo $date ;?>")
futuredate.displaycountdown("days", formatresults)
</script>
<?php
echo "</td></tr>";
}
}
?>
Ben yankı kullanarak php js kod kaydırma denedim ama bir şey (ilk kayıt için bile çıktı) görünmüyor. Yukarıdaki kod açıkça ben bu php kapalı ve onun döngü değil bu yüzden bu yüzden js açtı çünkü bunu yapmak için ne yapar. ama orada tahmin ediyorum uzak olmalıdır.
Bana yardım edin.