RSS Feed/News Issue with deleting a row

Status
Not open for further replies.

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
27,880
Points
823

Reputation:

I'm trying to delete a row:

Code:

Code:
private static function deletePending($table, $upload_id) {

$db = \XF::db();

$rowsDeleted = $db->delete($table, [
         'upload_id' => $upload_id
     ]);

}

And I'm calling it in another method like this:

Code:

self::deletePending('xf_ill_bfights_uploads', $row['upload_id']);

But I'm getting this error:

Code:

ErrorException: [E_WARNING] Array to string conversion

It keeps pointing to this line:

Code:

'upload_id' => $upload_id

The...

Read more

Continue reading...
 
Status
Not open for further replies.
Top