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
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.

  • Like 1
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.