Skip to content

Instantly share code, notes, and snippets.

View franzkugelmann's full-sized avatar

Franz Kugelmann franzkugelmann

  • elementare teilchen GmbH
  • Deutschland
View GitHub Profile
@einpraegsam
einpraegsam / InsertExample.php
Last active February 21, 2024 13:23
TYPO3 QueryBuilder example use
<?php
use TYPO3\CMS\Core\Database\ConnectionPool;
use TYPO3\CMS\Core\Utility\GeneralUtility;
// insert into tt_content (header, crdate, pid) VALUES ("New content", 123456789, 123);
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tt_content');
$queryBuilder
->insert('tt_content')
->values([
'header' => 'New content',