File: ./Quick_Proj/minisetup.page.php - ver:1.4.1
Open source - 𝘓𝘐𝘊𝘌𝘕𝘚𝘌 & 𝘊𝘰𝘱𝘺𝘳𝘪𝘨𝘩𝘵 © 2019-2026 EV-soft *** See the file: LICENSE
minisetup


This is a guide to quickly get started with a new project.

Minimal Clever HTML engine.

Guide TOGGLE-height: Click icon to toggle viewHeight for this card WIDE: Click to maximize/normalize this card width COLLAPSE: Click to close all cards;" EXPAND: Click to open all cards;"
This is a guide to setup a minimal Clever HTML engine.
Steps:
  SYSTEM:
 1. On your web-server, create a new projectfolder.
 2. Copy some of the system files to this folder. (from: github-clone.zip-file)
 php2html.lib.php - always used
 project.init.php - if menu-system is used
 PROJECT:
 3. In projectfolder create a file: yourFile.page.php file with this content:
<?php   $DocFile= './<yourFile>.page.php';    $DocVer='1.4.0';    $DocRev='2025-xx-xx';     $DocIni='evs';  $ModulNr=0; ## File informative only
= 'Open source - 𝘓𝘐𝘊𝘌𝘕𝘚𝘌 & 𝘊𝘰𝘱𝘺𝘳𝘪𝘨𝘩𝘵 ©  2019-2025 EV-soft *** See the file: LICENSE';

$sys= $GLOBALS["gbl_ProgRoot"]= './';   // system in same folder
$gbl_ProgRoot= './'; 

## Activate needed libraries: Set 0:deactive  (1:Local-source)  2:WEB-source-CDN  3:Auto: Local/CDN 
$needJquery=      '2';
$needTablesorter= '0';
$needPolyfill=    '0';
$needFontawesome= '2';
$needTinymce=     '0';

require_once ($sys.'php2html.lib.php');

### PAGE-START:
htm_Page_(titl:'<yourFile>.page.php', hint:, info:'File: '.$DocFile.' - ver:'.$DocVer, inis:'',
          algn:'center', imag:'', pbrd:false);

### Here you put your code...
    echo 'Hello World - Build with Clever HTML engine...';
    
### :PAGE_END
htm_Page_end();

?>
 4. Add your code in yourFile.page.php
 5. Modify "project.init.php" regarding the menudata, to your purpose
 6. Test and revise your project....
Now you are going...

Limitations in this setup:
Translate is not used, but you can activate it later.