Hi, I cannot figure out what is wrong with this and was hoping you guys could help
I keep getting Parse error: syntax error, unexpected T_STRING, expecting '('
<?php
include_once("utils.php");
$SECRET = xxxxxxxxxxx;
$sig = md5($_REQUEST['lt_users_tranid'] . ':' . $_REQUEST['new'] . ':' . $_REQUEST['lt_users_id'] . ':' . $SECRET);
if ($_REQUEST['sig'] == $sig){
$tranid = $_POST["lt_users_tranid"];
$query = mysql_query("SELECT * FROM lt_users WHERE lt_users_tranid='$tranid')");
if (mysql_num_rows($query) != 0)
{
mysql_query("update lt_users set lt_users_balance=lt_users_balance+'$_REQUEST[new]' where lt_users_tranid='$_REQUEST[lt_users_id]')");
}
elseif
mysql_query("INSERT INTO lt_users (lt_users_tranid, lt_users_balance) VALUE ('$_REQUEST[lt_users_tranid]','$_REQUEST[new]')");
}
echo "1";
}
else{
echo "0";
}
?>