akismarain wrote in php 😡aggravated

Can anyone help me with this? Everything here looks totally normal to me, and I've tried commenting out items to isolate the problem, but it seems to even give me errors when the rows are commented. It's problem is this:

Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/akisma/public_html/msgboardpost.php on line 30

The page itself can be viewed at www.akisma.com/messageboardpost.php.

It seems like it thinks the error is in the $passCheck line, but even when I comment that line out (which is line 30) it still gives me the same error. Also, I used the select language in the mysql table itself and it was fine. Any pointers?

// USERNAME AND PASSWORD CHECK

$passCheck = "SELECT user,pass FROM msgboard WHERE `user` = \"" . $_POST['user'] . "\";

$result = mysql_query($passCheck);

if (($current['pass']) = ($_POST['pass'])) {

echo "Sorry, your username or password is incorrect. Please try again.";

}

else {


// POSTING