Jump to content

Help with Query


Loathorhealer

Recommended Posts

[code] if ($logged_in == 1) {
    echo 'welcome back '.$_SESSION['username'].'';
$query = sprintf("SELECT firstname, lastname FROM users WHERE ("$logged_in == 1")");


$result = mysql_query($query);
if (!$result) {
   $message  = 'Invalid query: ' . mysql_error() . "\n";
   $message .= 'Whole query: ' . $query;
   die($message);
}

while ($row = mysql_fetch_field($result)) {
   echo $row['firstname'];
   echo $row['lastname'];
}
mysql_free_result($result);[/code]


okay. I get this error

[code]Parse error: syntax error, unexpected T_VARIABLE in /home/.navy/loathor/squaresyndicate.com/welcome.php on line 13[/code]

and I know its becuase of the $logged_in <-- deal. but I need it to display the firstname and the lastname of the person Just logged in. can you help?

Link to comment
Share on other sites

[!--quoteo(post=358109:date=Mar 25 2006, 12:50 AM:name=Loathorhealer)--][div class=\'quotetop\']QUOTE(Loathorhealer @ Mar 25 2006, 12:50 AM) [snapback]358109[/snapback][/div][div class=\'quotemain\'][!--quotec--]
[code] if ($logged_in == 1) {
    echo 'welcome back '.$_SESSION['username'].'';
$query = sprintf("SELECT firstname, lastname FROM users WHERE ("$logged_in == 1")");
$result = mysql_query($query);
if (!$result) {
   $message  = 'Invalid query: ' . mysql_error() . "\n";
   $message .= 'Whole query: ' . $query;
   die($message);
}

while ($row = mysql_fetch_field($result)) {
   echo $row['firstname'];
   echo $row['lastname'];
}
mysql_free_result($result);[/code]
okay. I get this error

[code]Parse error: syntax error, unexpected T_VARIABLE in /home/.navy/loathor/squaresyndicate.com/welcome.php on line 13[/code]

and I know its becuase of the $logged_in <-- deal. but I need it to display the firstname and the lastname of the person Just logged in. can you help?
[/quote]

What is actually stored in the variable $logged_in?
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.