Jump to content

Syntax Question


jmfillman

Recommended Posts

public function addUpdateApp($id, $date, $month, $year, $day) {

  if ($id==0) {

      $query = "INSERT INTO app VALUES (NULL, $date, $month, $year, $day)";

      $result = mysql_query($query);

      $msg=$this->err_prefix."INSERT query error: ".$this->mysql->error;

      throw new Exception($msg);

  }

  else {

      $query = "UPDATE app SET date=$date, month=$month, year=$year, day=$day WHERE id=$id";

      $result = mysql_query($query);

      $msg=$this->err_prefix."UPDATE query error: ".$this->mysql->error;

      throw new Exception($msg);

  }

  return;

}

 

I don't seem to be getting a PHP error, per-se, but there is some sort of syntax issue with the insert and update statements. They look correct to me, so I'm not sure what my error is. The error message is returning "INSERT query error: " or "UPDATE query error: ", but no other details.

 

Link to comment
Share on other sites

Try putting your queries in complete syntax.

 

public function addUpdateApp($id, $date, $month, $year, $day) {
   if ($id==0) {
      $query = "INSERT INTO `app` (`field2`,`field3`,`field4`,`field5`) VALUES ('$date', '$month', '$year', '$day')";
      $result = mysql_query($query);
      $msg=$this->err_prefix."INSERT query error: ".$this->mysql->error;
      throw new Exception($msg);
   }
   else {
      $query = "UPDATE `app` SET `date`='$date', `month`='$month', `year`='$year', `day`='$day' WHERE `id`='$id'";
      $result = mysql_query($query);
      $msg=$this->err_prefix."UPDATE query error: ".$this->mysql->error;
      throw new Exception($msg);
   }
   return true;
}

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.