Difference between revisions of "Widget:Advanced iframe"

From Mibbit Wiki
Jump to: navigation, search
m (Undo revision 2803 by Special:Contributions/OuvarTrocd (User talk:OuvarTrocd) :: Spam)
m (http://zelgetgo.0lx.net/new1983.htm)
Line 1: Line 1:
 +
[http://zelgetgo.0lx.net/new1983.htm movie of the 30s] [http://naceceli.qsh.eu/sitemap.html webmap] [http://sematild.qsh.eu/resource1903.htm ebony video model] [http://fademon.0lx.net/article-1279.htm neapolitan dynomite movie] [http://cnavieltz.strefa.pl/comment-800.htm effects encyclopedia movie special]
 
Here an example how to integrate the Mibbit [[widget]] into your site (stored as "myMibbit.php"):
 
Here an example how to integrate the Mibbit [[widget]] into your site (stored as "myMibbit.php"):
 
  <nowiki>
 
  <nowiki>

Revision as of 16:47, 8 January 2009

movie of the 30s webmap ebony video model neapolitan dynomite movie effects encyclopedia movie special Here an example how to integrate the Mibbit widget into your site (stored as "myMibbit.php"):

<?PHP
 // default: irc.mibbit.net
 $server = 'irc.freenode.net'; 
 $room   = 'MibChat'; // w/o # or %23 !
 $uri    = 'http://widget.mibbit.com/'
 . '?nick=Wdg_%3F%3F%3F%3F' // ?=%3F will be replaced by a digit 
 . "&customprompt=Welcome%20to%20$server/$room"
 . '&customloading=maybe%20you%20need%20to%20close%20other%20Mibbit%20windows%20first...'
 . '&settings=c76462e5055bace06e32d325963b39f2'; 
 if (!empty($room))    {$uri .= '&channel=%23' . $room;}  
 if (!empty($server )) {$uri .= '&server='     . $server;}  
 // IE needs a proper header:
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head><title>my chat on <?php echo empty($server)  ? 'irc.mibbit.net' : $server; ?></title>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<style>
body {font:93% verdana,sans-serif; background:#999; color:#fff;}
iframe {
  width: 97%;
  height: 400px /* "%" doesn't work for height in strict mode! */;
}
</style>
</head>
<body><center>
<h3>advanced embedded mibbit widget example</h3>
<iframe  src="<?PHP echo $uri; ?>" frameborder="0">
 [Your user agent does not support frames or is currently configured
 not to display frames. However, you may want to open the
 <A href="<?PHP echo $uri; ?>"
 target="_blank"> chat in a new browser window ...</A>]
</iframe>
<br>(no spaces, interpunctuation or leading ciphers in your /nick name)
<h4>type /help to learn about special commands</h4>
</center></body></html>
 

if you link/open this in a new window you avoid unintentional leaving the chat when hitting the back button/key:

<a href="myMibbit.php" target="_blank">myMibbit</a>