Icq статус скрипт

Discussion in 'PHP' started by xxxxxxxxxxxxxxx, 24 Mar 2008.

  1. xxxxxxxxxxxxxxx

    xxxxxxxxxxxxxxx Elder - Старейшина

    Joined:
    20 Jan 2008
    Messages:
    66
    Likes Received:
    8
    Reputations:
    0
    Дайте кто то скрипт котрый бы показывал на главной странице сайта возле номера Icq статус онлайн или офлайн этот контакт! Нужно такой чтоб работал на юкозе. буду очень благодарен. плюсы с меня ;-)
     
  2. Garfi

    Garfi Elder - Старейшина

    Joined:
    1 Feb 2008
    Messages:
    85
    Likes Received:
    23
    Reputations:
    0
    там не скрипт, там обычный хтмл-тэг, щас у себя в справочнике поищу)
     
  3. banned

    banned Banned

    Joined:
    20 Nov 2006
    Messages:
    3,324
    Likes Received:
    1,193
    Reputations:
    252
    http://shaman.asiadata.ru/node/18
     
    2 people like this.
  4. Ridikh

    Ridikh Member

    Joined:
    11 Nov 2007
    Messages:
    69
    Likes Received:
    7
    Reputations:
    0
    в сайт впиши вот это
    вместо 111111 свой номер впиши и будет тебе счастье;)

    ps поставьте плюсов мне побольше ))
     
    2 people like this.
  5. Darkweider

    Darkweider Elder - Старейшина

    Joined:
    8 Feb 2007
    Messages:
    142
    Likes Received:
    13
    Reputations:
    0
    небольшая поправочка: надо в квипе или в аське еще поставить в настройках чтобы статус отображался для web иначе серый цветок будет)))
     
  6. echobyte

    echobyte Elder - Старейшина

    Joined:
    7 Mar 2008
    Messages:
    463
    Likes Received:
    190
    Reputations:
    50
    по дефолту он отображаеться
     
  7. Jairam

    Jairam New Member

    Joined:
    26 Mar 2008
    Messages:
    7
    Likes Received:
    2
    Reputations:
    0
    что-то типо того, выводит список статусов ась размером $go, начиная с аси $start
    если нужно вывести состояние только одной аси, $go=0

    Code:
    <?php
    
    $start=400001129;//icq number
    $go=30; //if want to display one icq number, set 0
    set_time_limit(30);  //time limit in seconds
    for($i=$start;$i<=$start+$go;$i++){
      //echo"<a href=\"http://www.icq.com/people/full_details_show.php?uin=$i\">
      //<img border=\"0\" src=\"http://status.icq.com/online.gif?icq=$i&img=4\"></a>";
      $image1="http://status.icq.com/online.gif?icq=$i&img=4";
      $image2=imagecreatefromgif($image1);
      $showpx=imagecolorat($image2, 45, 12);
      if($showpx==31)
      {
          $numarray[$i]=1;
          $message[$i]='ONLINE';
          echo"$i $message[$i]";
          echo"<img src='img_online.gif'/><br>";
      }
      if($showpx==43)
      {
          $numarray[$i]=2;
          $message[$i]='offline';
          echo"$i $message[$i]";
          echo"<img src='img_offline.gif'/><br>";
      }
      else
      {
          $numarray[$i]=0;
          $message[$i]='hz';
          echo"$i $message[$i]";
          echo"<img src='img_hz.gif'/><br>";
      }
    
    }
    
    ?>
     
    1 person likes this.