PHP MySQL INSERT return value with one query execution

前端 未结 6 1167
深忆病人
深忆病人 2021-01-05 04:42

Is there anything returned from MySQL/PHP on a INSERT query being executed? Here is my function which I have in a CLASS.

function mysqlQuery($query) {
   //          


        
6条回答
  •  青春惊慌失措
    2021-01-05 05:39

    INSERT just returns true or false. to actually return something useful, you will need a SELECT or similar query. there is no result to fetch with INSERT.

提交回复
热议问题