Jump to content
  • 0

window.load/unload не рабоатет


Ratnikov310
 Share

Question

Для своей соц сети хочу сделать свитч по значениям (0 или 1) для определения online, но почему-то не робит :unsure:

all.js



window.load = function() {
var xmlhttp = getXmlHttp();
xmlhttp.open('GET', 'suggest.html?status=1', false);
xmlhttp.send(null);
};
window.unload = function() {
var xmlhttp = getXmlHttp();
xmlhttp.open('GET', 'suggest.html?status=0', false);
xmlhttp.send(null);
};

suggest.php


function is_online() {
$dir='user/'.@$user;
if($dir!='user/'){
$of=fopen($dir.'/online.txt', 'w');
fwrite($of, '1');
fclose($of);
}
}
function is_offline() {
$dir='user/'.@$user;
if($dir!='user/'){
$of=fopen($dir.'/online.txt', 'w');
fwrite($of, '0');
fclose($of);
}
}
if($_GET['status']=='0'){is_offline();}
if($_GET['status']=='1'){is_online();}

В чем проблема? :huh:

Edited by Ratnikov310
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

А откуда тут возьмётся $user?: безется он из global.php с кук с последующим декодирование base64;

Почему не делаешь flock при записи?: Какая разница? :)

Надеюсь, папка user/ у тебя лежит на tmpfs, а то ты винт задёргаешь: Она лижит в корне сайта, там все данные юзеря тч и пароль. Кстати не подскажите, как еще кроме base64 можно зашифровать пароль, а то он в голом виде лижит))

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy