Bir windows 2003 sunucu çalıştırmak ve bu her 15 dakika gibi bir kod çalıştırmak için çalıştı:
require("db_connect.php");
$conn = db_connect();
//list online brukere - flytt funksjon til separat side for bedre ytelse
$time = time() - 900;
$query ="SELECT username FROM tbl_user WHERE last_online >= $time";
$online_users;
if ($result = $conn->query($query)) {
while ($row = $result->fetch_assoc()) {
$online_users .= $row["username"].":";
}
$result->close();
}
$filename = "online_users.txt";
$fp = fopen($filename,"w");
fputs($fp,$online_users);
fclose($fp);
Ben url gitmek ya çalışır komut satırından çalıştırmak ve dosya yazarken. Ama görev, sadece yanlış Neler .. çalıştırın ve dosyayı kaydetmek değil mi?