PHP Classes

File: views/layouts/label_simple.php

Recommend this page to a friend!
  Classes of Uldis Nelsons   PHP Barcode and QRCode Reader and Generator   views/layouts/label_simple.php   Download  
File: views/layouts/label_simple.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Barcode and QRCode Reader and Generator
Generate barcodes and qrcodes for printing
Author: By
Last change:
Date: 3 years ago
Size: 325 bytes
 

Contents

Class file image Download
<?php

use yii\web\View;
/**
 * @var View $this
 * @var string $content
 */



$this->beginPage()
?><!DOCTYPE html>
    <head>
        <meta charset="utf-8">
        <?php $this->head(); ?>
</head>
    <?php $this->beginBody() ?>
<?=$content?>
<?php $this->endBody() ?>
</body>
</html>
<?php
$this
->endPage();