> 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/add-new-row.md).

# Add New Row

Table = The Table Name

Next is arrays of colums to add

```php
$db->add(
    "table" , 
    [
        "col1" => "col2",
        "col2" => "col3"
    ]
)
```

<pre class="language-php"><code class="lang-php">Returns
Array(
<strong>   'STATE' => TRUE,
</strong>   'MESSAGE' => "Successfully added",
   'INSERT_ID' => "1"
)
</code></pre>
