Difference between revisions of "Widget:Advanced iframe"
(DTD and utf8 added) |
|||
Line 7: | Line 7: | ||
. '&chatOutputShowTimes=true' // type /dset for more settings | . '&chatOutputShowTimes=true' // type /dset for more settings | ||
. '&channel=%23mibbit_test'; // or %23yourChannel | . '&channel=%23mibbit_test'; // or %23yourChannel | ||
− | ?><html> | + | ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
+ | <html> | ||
<head><title>my chat on mibbit.com</title> | <head><title>my chat on mibbit.com</title> | ||
+ | <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/> | ||
<style> | <style> | ||
body{ | body{ |
Revision as of 15:30, 29 February 2008
here an example how to integrate a chat window into your site (stored as "myMibbit.php"):
<?PHP $uri = 'http://embed.mibbit.com/e/' . '?nick=emb' // must not start numeric . mt_rand(100000, 999999) // avoid collisions . '&chatOutputShowTimes=true' // type /dset for more settings . '&channel=%23mibbit_test'; // or %23yourChannel ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head><title>my chat on mibbit.com</title> <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/> <style> body{ font:1em Arial,sans-serif; background:#666; color:#fff; } iframe{ width:96%; height:400px; } </style> </head> <body><center> <h3>type /help to learn about available commands</h3> <iframe src="<?PHP echo $uri; ?>" scrolling="no" 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> <h3>To change your nickname type: /nick YourNewNickNameHere</h3> </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>
-- HerculeP 10:44, 29 February 2008 (UTC)