PHP Classes

File: view/index.phtml

Recommend this page to a friend!
  Classes of Alex Lau   Mix2ool   view/index.phtml   Download  
File: view/index.phtml
Role: Example script
Content type: text/plain
Description: The sample view file
Class: Mix2ool
Web development framework integrated with jQuery
Author: By
Last change:
Date: 14 years ago
Size: 404 bytes
 

Contents

Class file image Download
<? header("Content-Type: text/html;charset=UTF-8"); ?>
<!DOCTYPE html>
<html lang="en">
<head>
    <title>Mix2ool</title>
    <meta charset="utf-8" />
   
    <?=mixOutputHelper::includeJS("client.js")?>

    <?=mixOutputHelper::includeCSS("style.css")?>
</head>
 
<body id="index">
    <?include_once($viewPath . "header.phtml");?>

    <?include_once($viewPath . "footer.phtml");?>
</body>
</html>