You are here: C97net • 3. Developer's Guide
Learn the first step of qE development
Welcome to the qE. In this chapter, you will learn how to use qE to create a simple script! If you haven't, please install qE in your host.
<?php
// always use user_init.php for UI
require './includes/user_init.php';
// as qE is template based, all output must be contained in $txt['main_body']
$txt['main_body'] = 'Hello World';
// send the content of $txt[main_body] to output
// always remember, flush_tpl() also exit the script, so always put flush_tpl
// at the end of the script!
flush_tpl ();
?>
There are so many functions available in qE, you can learn about them in Function Reference.
There is no comment. Why not be the first?