<?php
if (!defined('CPG_NUKE')) { exit; }
/*---------------------------------------------------------
Description:
iframe Module - CPG-Nuke Compatible
By: Stephen2417 aka HomeSlice (stephen2417@gmail.com)
http://www.stephen2417.com
Copyright © 2004 by Stephen2417
---------------------------------------------------------
Instructions:
Save as index.php, Upload to /modules/NAME/
(change the name if you wish to have more than one)
then fill in the config (url and size).
---------------------------------------------------------*/
/*--------------------[START CONFIG]-----------------------*/
$url = 'http://www.yourdomain.com/dir/FlashChat/flashchat.php'; /* URL */
$size = array(
'width' => '600', /* Width */
'height' => '500' /* Height */
);
$pagetitle .= 'Our Chatrooms';
/*---------------------[END CONFIG]------------------------*/
require_once('header.php');
OpenTable();
echo '<center>'
.'<iframe src="'.$url.'" width="'.$size['width'].'" height="'.$size['height'].'">'
.'Your browser dosen\'t support iframe\'s, Get a real browser. Firefox - getfirefox.com'
.'</iframe>'
.'</center>';
CloseTable();
|