Es más facil. Lo más probable es que estas creando un cookie y la información que ingresaste no se esta viendo. Pero sacando al lado la especulación. Puedes hacer algo así.
index.php
Código PHP:
Ver original<?php
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<?php
if($_SESSION["recargarDeIndex"] != 1){
echo '<meta http-equiv="refresh" content="1">';
$_SESSION["recargarDeIndex"] = 1;
}
?>
</head>
....