Thread: Having trouble
View Single Post
  #12  
Old 8th February 2010, 09:51
wMan wMan is offline
Banned
 
Join Date: Feb 2008
P2P
Posts: 1,433
Default
then hove comes ur index.php is not updated ?

on index.php before
PHP Code:
include("header.php"); 
must be
PHP Code:
<?php
if (defined('IN_PMBT'))die ("You can't include this file");
define("IN_PMBT",true);
on main.php

before
PHP Code:
$tableopen false;
$errtableopen false;
$table2open false;
$btback1 "f0f0f0";
$btback2 "f9f9f9";
$btback3 "EBDDE2"
must be
PHP Code:
if (!defined('IN_PMBT')) die ("You can't access this file directly"); 
Reply With Quote