Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 412 Bytes

File metadata and controls

16 lines (13 loc) · 412 Bytes

ACWPD Tools

Useful Tools (php and JS) for ACWPD projects (or your own!)

Usage

composer require acwpd/tools

...and then refence the tool you want to use:

  • JsonToTable

    • $table = new ACWPD\Tools\JsonTotable($JSON);
      // then
      $html = $table->build();
      // or ...
      echo $table;
      
  • DbErrorChecker

    • $data = ACWPD\Tools\DbErrorChecker::CheckPrepared($db, $PreparedStatement);