cn sm 1 help abt this error n even if i click any of the above option it shows same error....n nothing is working
cn sm 1 help abt this error n even if i click any of the above option it shows same error....n nothing is working
Last edited by maxy2010; 18-02-12 at 09:28 PM.
I think you edited the page on notepad too much so the ending tag of the PHP just appeared at the page. Just re-edit again a fresh one.
i also have same prob....but i dont think i edited anything beside config.php
i too did not edited any of php except config with my sql details
added ntwdblib.dll in the php folder ?
FIRST OF ALL, This isn't an error at all.
jur13n: ntwdblib.dll does not have anything to do with this.
Maxy: The php must have missed a '<?' in between somewhere and... Have you added the links into the navigation buttons? And post your php.
Last edited by razi46; 25-05-11 at 05:10 AM.
i think the problem is in this line....but i still dont know how to fix it...any suggest ?PHP Code:<? if($_SESSION['UGradeID'] == 255 or $_SESSION['UGradeID'] == 254){
include"modules/mod_adminindex.php";echo "</br>";} ?>
<? include "modules/mod_clanranking.php" ?>
---------- Post added at 05:20 PM ---------- Previous post was at 04:49 PM ----------
HEY....i think i succeed to solve the prob...some settings ini "php.ini" must be configure
This will fix it...
http://forum.ragezone.com/f497/tutor...errors-605143/
na still de same
Website doesn't show stuff
Xampp Users :
Go to your xampp folder and then your php folder and open php.ini
search for "short_open_tag = Off" Then change it to On and restart xampp or pc to make it work.
( This will show-up alot of things on your website )
Appserver Users :
Go to Run(CMD) and typ php.ini in it and your php.ini will open.
search for "short_open_tag = Off" Then change it to On and restart xampp or pc to make it work.
( This will show-up alot of things on your website )
As razi said, it's not an error.
You just forgot somewhere the "<?php" .
And your php script is so messy ...
try that:
PHP Code:<?php
if($_SESSION['UGradeID'] == 255 or $_SESSION['UGradeID'] == 254)
{
include("modules/mod_adminindex.php");
echo "</br>";
}
include ("modules/mod_clanranking.php");
?>