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
https://forums.phpfreaks.com/topic/92835-syntax-question/
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
https://forums.phpfreaks.com/topic/92835-syntax-question/#findComment-475558
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.