View Single Post
  #1 (permalink)  
Old 12-28-2002, 01:36 AM
Suzie Suzie is offline
Junior Member
 
Join Date: Dec 2002
Posts: 29
Working on a click for source smiley module.
I know this is probably pretty basic but I am VERY new at this. I want to make this Smiley Module so that all of the numbered pages at the top of the page link inside the module with the page frame around it. This is my current index.php

Quote:
<?php
if (!eregi("modules.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
if (!isset($mainfile)) { include("mainfile.php"); }
$module_name = basename(dirname(__FILE__));
$index = 1;
include("header.php");

include("modules/Smileys/smile.html");

include("footer.php");
?>
Can someone please give me a little help? Thanks!
Reply With Quote