-
आपको तारीख लानी है:
$tm = mysql_query("SELECT timestamp AS t FROM logs ORDER by id ASC")->fetch_assoc()['t']; //obviously, check the size before you fetch
-
आप शायद
strtotime()
. का उपयोग करना चाहते हैं तो उदाहरण के लिए:$dif = $cur_tm-strtotime($tm);
-
$dif
मिलीसेकंड में होगा। -
आप लूप और सरणी के साथ क्या कर रहे हैं? बहुत भ्रमित करने वाला।