need to test if sql query was successful

后端 未结 11 1250
遥遥无期
遥遥无期 2021-02-18 17:54

I have this query and if it returns successful, I want another function to process, if not, do not process that function.

Here is the code for running the query

11条回答
  •  离开以前
    2021-02-18 18:14

    if ($DB->query(...)) { success }
    else { failure }
    

    query should return false on failure (if you're using mysql_query or $mysqli->query). If you want to test if the UPDATE query actually did anything (which is a totally different thing than "successful") then use mysql_affected_rows or $mysqli->affected_rows

提交回复
热议问题