Hi Guys, can anyone tell me why login only seems to work in Firefox? Please see my login file below.
[php]
<?php //session_start(); INCLUDE_ONCE('connect.php'); ?> Tip Top MusicTip Top Music
</ul>
</nav>
Login Page
if(!empty($_SESSION[‘LoggIN’])&& !empty($_SESSION[‘Username’]))
{
?>
You are successful!
"; echo "You are being rediected to your members area.
"; echo ""; } else { echo "We have encountered an error
"; echo "Sorry! We could not find your account. Please Click here to try again.
"; } } else { ?> <p>Welcome You can either logging below, or <a href="registration.php">Please click here to register</a>.</p>
<form method="POST" action="login.php" name="loginform" id="loginform" autocomplete='on'>
<table style="padding:50px">
<tr>
<td>Username:</td>
<td> <input type="text" name="username" id="username" required='required'> </td>
</tr>
<tr>
<td>Password:</td>
<td><input type="password" name="password" id="password" required='required'></td> <br />
</tr>
<tr>
<td><input type="submit" name="login" id="login" value="Login" /></td>
</tr>
</table>
</form>
<?php
}
?>
[/php]