Hello,
For some reason I am getting �� on my page. See http://profilepeep.com/stats/login.php
The source for the footer.php (the file causing the problem) is all HTML and I even tried switching it to a tpl and it still gives that problem. Which says there is another problem. The login.php (template) is also all html. the PHP login file (one you se when you go to the site) is just a simple php file
Source:
Anyone see any problems or know what those ?? mean?
- Steve
For some reason I am getting �� on my page. See http://profilepeep.com/stats/login.php
The source for the footer.php (the file causing the problem) is all HTML and I even tried switching it to a tpl and it still gives that problem. Which says there is another problem. The login.php (template) is also all html. the PHP login file (one you se when you go to the site) is just a simple php file
Source:
PHP:
<?php
session_start();
// Include config
// REMOVED
// Check login or go to homepage or display error
// REMOVED BECAUSE OF SECURITY
if(@mysql_num_rows($check) == 0) {
$error = "Error username or password is not correct, try again.<br>";
// GET HEADER
include("templates/header.php");
// GET PAGE
include("templates/login.php");
// GET FOOTER
include("templates/footer.php");
die();
}else{
$row = mysql_fetch_array($check);
// REMOVED SESSIONS FOR SECURITY
header("location: show.php");
}
}else{
// GET HEADER
include("templates/header.php");
// GET PAGE
include("templates/login.php");
// GET FOOTER
include("templates/footer.php");
}
?>
Anyone see any problems or know what those ?? mean?
- Steve









