[help]english mmropg

Joined
Jan 6, 2008
Messages
475
Reaction score
2
he guys.

i got a question what is this.
on every page is the same tekst how do i fix that?
007ruben - [help]english mmropg - RaGEZONE Forums
 
Lmfao, you got like a billion questions if i look this forum T_T

Show us the script you use, you probably did something wrong in the source code ;)
 
Upvote 0
Code:
<?
include "title.php";
include "config.php";
include "_functions.php";
if(!$opened == 0){
if ($_GET['header'] == 1){
    if (file_exists("mod_" . $_GET['do'] . ".php")) {
        include "mod_" . $_GET['do'] . ".php";
	}
} }
include "banneduser.php";
include "checkcookie.php";
?><html>

<head>
<meta http-equiv="Content-Language" content="es">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>GunZone - <?=$pagetitle?></title>
<link rel="stylesheet" type="text/css" href="images/style.css">
<script language="JavaScript" src="functions.js"> </script>
</head>

<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0" bgcolor="#000000">

<div align="center">
	<table border="0" style="border-collapse: collapse" width="921" id="table1">
		<tr>
			<td background="images/header.jpg" width="921" height="158"> </td>
		</tr>
		<tr>
			<td background="images/nav_bar.jpg" height="28" class="menu" valign="middle">
			<p align="center"><a href="index.php">Home</a> | 
			<a href="index.php?do=register">register</a> 
			| <a href="index.php?do=downloads">Downloads</a> | 
			<a href="http://gunzone.info/forum">Forum</a> | 
			<a href="index.php?do=ranking&expand=1">Ranking</a> | 
			<a href="index.php?do=myclan">Clan</a> |
			<a href="index.php?do=itemshop&expand=1">Item 
			Shop</a> | <a href="index.php?do=contact">Contact</a></td>
		</tr>
		<tr>
			<td background="images/main_bg.jpg">
			
			<table border="0" style="border-collapse: collapse" width="919" height="100%" id="table2">
                 <?	if ($_GET['expand'] == 1){
   						if (file_exists("mod_" . $_GET['do'] . ".php")) {
        					include "mod_" . $_GET['do'] . ".php";
        					$include = "1";
						}
					} ?>
				<tr>
					<td width="917" colspan="5" height="26"> </td>
				</tr>
				<tr>
					<td width="10"> </td>
					<td width="208" valign="top">
					<div align="center">
						<? if($_SESSION['UGradeID'] == 255 or $_SESSION['UGradeID'] == 254){include"mod_adminindex.php";echo "</br>";} ?>
						<? include "mod_clanranking.php" ?>
						</div>
					</td>
					<td width="481" valign="top">
					<? if($opened == 0){
                        include "mod_offline.php";
                    }else{
                    if (isset($_GET['do'])) {
                            $_GET['expand'] = 0;
						   if (file_exists("mod_" . $_GET['do'] . ".php")) {
							    include "mod_" . $_GET['do'] . ".php";
						    }
                        }else{
                            include "mod_index.php";

					    }

                        if(isset($default)){
                            include $default;
                        }  }
                        ?></td>
					<td width="206" valign="top">
					<p><? include "mod_iLogin.php" ?></p>
					<p> </p>
					<p> </td>
					<td width="12"> </td>
				</tr>
				</table>
			</td>
		</tr>
		<tr>
			<td background="images/footer.jpg" height="65"> </td>
		</tr>
	</table>
</div>

</body>

</html>

this is my index

and now my config

Code:
<?
mssql_connect("RUBEN-44PEHLCPG\MYSQLEXPRESS","sa","123");
mssql_select_db("GunzDB");
$opened = 1;
if($opened == 0){
    $pagetitle = "Server in maintenance";
}
?>
 
Upvote 0
Back