Ben şu an gelişmekte olan web çok yetenekli değilim ama ben bir MySQL veritabanı ve HTML gösterileri verileri sorgular PHP ile bir web uygulaması oluşturmak için idare ettik.
Ben tablo zaten oluşturulan bir zaman damgası alanı kullanarak değişti ve her eklemede güncelleştirmeleri, olmadığını kontrol etmek istiyorum. İki zaman (önceki ve şimdiki) Karşılaştırılması anahtar,
ama ben o kadar javascript kolu yok.
How can I pass a parameter to my hastablechanged.php file (the previous timestamp) and simply return a flag (1: changed, 0: not changed) to javascript? and... how would be a basic javascript function to run a timer and call hastablechanged.php posting old_timestamp and receiving the flag and then update the div?
Googling oldum ama ben bulduk çözümler çok karmaşık ve ben sadece ben yazmak nasıl bulmuyorum bir javascript işlevi gerek biliyorum.
Bu hastablechanged.php olduğunu:
<?php
include 'config.php';
include 'opendb.php';
$table = "data_table";
$query_timestamp = "select timestamp from {$table} where id = 0;";
$timestamp = mysql_query("{$query_timestamp}");
if (!$timestamp) {
die("query failed");
}
$row_timestamp = mysql_fetch_array($timestamp);
echo $row_timestamp['timestamp'];
?>
Ve bu benim index.php
<!DOCTYPE HTML PUBLIC>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<title>Data values</title>
</head>
<body>
<div id=data>
<? include("table.php");?>
</div>
</body>
</html>
"table.php" veri ve görüntüler bir html tablo çizim seçer php kodudur.
Benim derece projeyi bitirme için bu konuda sıkışmış kulüpler olarak ben, bir sürü herhangi bir yardım teşekkür ederim