Jump to content

Search the Community

Showing results for tags 'popup image php onmouseover'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 1 result

  1. Hey all, ok I have this script below which shows our twitch.tv users who are online and offline, its a great script but we would like the function as users have asked to be able to have a popup when you hover over each users channel link. Now the popup has been suggested that it needs to be an image or snapshot of the online users twitch page. so an online user you will highlight the link and it will show a popup image of the URL page that the link links to, their twitch.tv account. And example of the function we are after is here: www.aoczone.net (top right hand corner streamers) GUYS IS THIS POSSIBLE TO ADD THAT FUNCTION TO THE BELOW CODE, sorry guys I am not a coder more of a graphics person, could someone help us out please on this one? Code for the whole script is below: __________________________________________________________________ <html> <head> <style> font-family:Verdana, Arial, Helvetica; font-size: 70%; color: #825a15; font-weight:bold; </style> <title>Streamlist</title> </head> <body> <FONT color=#825a15 face="tahoma" size="2pt"> <?php /** * @version 0.1 * @copyright © 2012/2013 Cees Middel (Avon) www.maegis.net * @Inspired by Syi http://mushroom-mayhem.com * @license GNU/GPL v3 http://www.gnu.org/licenses/gpl.html */ /** * array with all stream names i.e. www.twitch.tv/"iksf". * To add more users just add their channel names with comma seperation * This is all there is, no futher editing required */ $members = array("aoe2hdozclan","manbeast_aoe","brannin","pain1800","usk_apocalipce","resonance22"); // This variable becomes one long url with the channel names stringed up behind it // This url then fetches a json file from twitch with all the selected channels information $userGrab = "http://api.justin.tv/api/stream/list.json?channel="; //I use this array to compare with the members array. All users in this arrat are substracted from the members array and hence are //"offline" $checkedOnline = array (); foreach($members as $i =>$value){ $userGrab .= ","; $userGrab .= $value; } unset($value); //grabs the channel data from twitch.tv streams $json_file = file_get_contents($userGrab, 0, null, null); $json_array = json_decode($json_file, true); //get's member names from stream url's and checks for online members foreach($members as $i =>$value){ $title = $json_array[$i]['channel']['channel_url']; $array = explode('/', $title); $member = end($array); $viewer = $json_array[$i] ['stream_count']; onlinecheck($member, $viewer); $checkedOnline[] = signin($member); } unset($value); unset($i); //checks if player streams are online function onlinecheck($online, $viewers) { //If the variable online is not equal to null, there is a good change this person is currently streaming if ($online != null) { echo '<a href="http://www.twitch.tv/'.$online.'" target="_blank"> <strong>'.$online.'</strong></a>'; echo '&nbsp <img src="/images/online.png"><strong></strong> Online</br>'; echo '<img src="/images/viewers.png"><strong>Viewers:</strong> &nbsp' .$viewers.'</br>'; } } //This funcion add's online channel names to the checked online array function signin($person){ if($person != null){ return $person; } else{ return null; } } ?> </font> <hr> <FONT color=#825a15 face="tahoma" size="2pt"> <?php //This part list all the people currently offline. Here the array with online users is compared with the total users. //online users are then removed from the total users array. foreach ($members as $i => $value1) { foreach($checkedOnline as $ii => $value2){ if($value1 == $value2){ unset($members[$i]); } } } //print a nice list with people that can't currently be bothered with streaming their games foreach ($members as $i => $value) { echo '<a href="http://www.twitch.tv/'.$value.'" target="_blank"> <strong>'.$value.'</strong></a>'; echo '&nbsp<img src="/images/offline.png"> <strong></strong> Offline</br>'; } ?> </font> </body> </html> ____________________________________________________________________
×
×
  • 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.