Jump to content

Error in my login session


funderboltz

Recommended Posts

I don't know how to solve this error;

Parse error: syntax error, unexpected '$db' (T_VARIABLE) 

 

code:

 
<?php
 
$connection = mysql_connect("localhost", "root", "")
 
$db = mysql_select_db("company", $connection);
session_start();
 
$user_check = $SESSION['login_user'];
$ses_sql = mysql_query("select username from login where username ='$user_check", $connection);
 
$row = mysql_fect_assoc($ses_sql);
$login_session =$row[username];
if(!isset($login_session)){
mysql_close($connection);
header(('Location: Index.html'));
}
?>
Link to comment
https://forums.phpfreaks.com/topic/293451-error-in-my-login-session/
Share on other sites

... and “$SESSION” and “mysql_fect_assoc” and “$row[username]” ...

 

Your really need to write your code more carefully. If you tend to make lots of typos, slow down and double-check each line before you go on.

 

I also recommend that you use an IDE like Netbeans instead of a simple text editor. This will help you recognize obvious mistakes as you write, so that you don't have to hit F5 in your browser all the time.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.