For the complete documentation index, see llms.txt. This page is also available as Markdown.

Database Security

It's important to escape strings before you pass them into the database, as DBMS does not do this automatically.

use Saturn\DatabaseManager\DBMS;
$DB = new DBMS();

$Data = $DB->Escape($Data);

// Now safe to perform a query with the data.

Last updated