The best way to learn how to use the WebCore is by example. See the documentation for more information.

The requested URL is always shown first; if a page uses one or more WebCore templates, those are shown afterwards.

00 <?php
01   include_once ('software/webcore_init.php');
02  
03   $Page->title->subject = 'Develop';
04   $Page->location->append ('WebCore', './');
05   $Page->location->append ('Develop');
06  
07   $Page->start_display ();
08 ?>
09 <div class="top-box">
10   <div class="button-content">
11     <a href="first_run.php" class="button">&lt; First run</a>
12     <a href="documentation.php" class="button">Documentation &gt;</a>
13   </div>
14 </div>
15 <div class="main-box">
16   <div class="text-flow">
17     <?php
18       $Page->show_message('Tutorials and programming tips are coming soon!', 'info');
19     ?>
20     <p class="notes">Check back around end 2005/early 2006; for now, please help yourself
21       to the <a href="documentation.php">Documentation</a>.</p>
22   </div>
23 </div>
24 <?php $Page->finish_display (); ?>
25