0

我已经包含了在服务器端运行的 php 代码,该代码失败并出现以下错误:

解析错误:语法错误,第 2849 行 /home3/atljj/public_html/Osler/include/vo2_membersite.php 中的意外 T_ELSE

不知道为什么它在 ELSE 语句上停止???

小故事... 我想写一个程序来创建和维护一个 1 记录的 MYSQL 控制文件。

我正在逐步编写代码,到目前为止有:

  1. 编写 HTML 代码以通过表单向服务器提交请求以创建具有适当字段的表。

  2. 然后重新编写服务器以通过 INSERT 语句将第一条记录写入表中。

  3. 到目前为止一切都很好......我在 MySQL 文件中有 1 条记录,接下来我只需要更新它。

  4. 服务器已更改为测试已经存在的记录,如果是这样,则绕过 INSERT 代码并运行 UPDATE 代码...但我看不出问题出在哪里,除了我现在尝试使用 MYSQLi 代码。

我的表检查是否做错了,我正在搜索记录 1,如果没有找到,请使用 INSERT ELSE 使用 UPDATE...

function UpdateCase(&$formvars)
{
    $con = mysqli_connect($this->db_host,$this->username,$this->pwd,$this->database);
    if (mysqli_connect_errno())
    {
        $this->HandleDBError("Failed to connect to MySQL");
        return false;
        }
    $c_match = $this->RandomIt();
    $c_username = "admin";

    $qry = "Select * from $this->case_c_table WHERE c_id = 1";
    if(!$result = mysqli_query($con,$qry));
    { /* first entry not found add to table*/
        $c_flag="M";
        $addit = 'INSERT INTO $this->case_c_table (
            c_match,
            c_flag,
            c_username,
            c_element,
            c_patname,
            c_patgndr,
            c_patage,
            c_patethncty,
            c_patdate,
            c_cc,
            c_td,
            c_lmpdate
            )
            values
            (
            "' . $c_match . '",
            "' . $c_flag . '",
            "' . $c_username . '",
            "' . $this->SanitizeForSQL($formvars['c_element']) . '",
            "' . $this->SanitizeForSQL($formvars['c_patname']) . '",
            "' . $this->SanitizeForSQL($formvars['c_patgndr']) . '",
            "' . $this->SanitizeForSQL($formvars['c_patage']) . '",
            "' . $this->SanitizeForSQL($formvars['c_patethncty']) . '",
            "' . $this->SanitizeForSQL($formvars['c_patdate']) . '",
            "' . $this->SanitizeForSQL($formvars['c_cc']) . '",
            "' . $this->SanitizeForSQL($formvars['c_td']) . '",
            "' . $this->SanitizeForSQL($formvars['c_lmpdate']) . '"
            )';      
        mysqli_query($con,$addit);
    }
    else
    {
        $qry="Update $this->case_c_table Set
        c_element=". $this->SanitizeForSQL($formvars['c_element']).",
        c_patname=". $this->SanitizeForSQL($formvars['c_patname']).",
        c_patgndr=". $this->SanitizeForSQL($formvars['c_patgndr']).",
        c_patage=" . $this->SanitizeForSQL($formvars['c_patage']).",
        c_patethncty=". $this->SanitizeForSQL($formvars['c_patethncty']).",
        c_patdate=". $this->SanitizeForSQL($formvars['c_patdate']).",
        c_cc=". $this->SanitizeForSQL($formvars['c_cc']).",
        c_td=". $this->SanitizeForSQL($formvars['c_td']).",
        c_lmpdate=". $this->SanitizeForSQL($formvars['c_lmpdate'])."
        WHERE c_id=1";
        mysqli_query($con,$qry);
    }
}
4

0 回答 0