> For the complete documentation index, see [llms.txt](https://prtechs-organization.gitbook.io/e2encrypt-frame-php/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prtechs-organization.gitbook.io/e2encrypt-frame-php/database/delete-row.md).

# Delete Row

**Delete Single Item**

```php
$db->delete("TABLE","ROW",1);
```

**Delete Multiple Items**

```php
$db->delete("TABLE","ROW",0,['1','2']);
```
