Hi,
I’m trying to access PHPMaker functions like ExecuteRows() from a custom file without including common files (I don’t want menu and header because it generates a word document).I’ve done this in earlier versions of PHPMaker but now I got problems:This is the beginning:
<?php
namespace PHPMaker2023\doctpl;
require_once 'vendor/autoload.php';
require_once 'src/phpfn.php';
Then I try to use ExecuteRows() with error:Fatal error: Uncaught TypeError: Argument 1 passed to Dflydev\DotAccessData\Data::__construct() must be of the type array, null given, called in C:\wamp\www\doctpl\src\phpfn.php on line 34 and defined in C:\wamp\www\doctpl\vendor\dflydev\dot-access-data\src\Data.php on line 40
( ! ) TypeError: Argument 1 passed to Dflydev\DotAccessData\Data::__construct() must be of the type array, null given, called in C:\wamp\www\doctpl\src\phpfn.php on line 34 in C:\wamp\www\doctpl\vendor\dflydev\dot-access-data\src\Data.php on line 40The ExecuteRows row for testing looks like this:
$CompanyData = ExecuteRows("SELECT * FROM `docs` WHERE `id` = 14");
What am I doing wrong?