<?php
Header("Content-type: text/vnd.wap.wml");
echo("<?xml version="1.0" encoding="ISO-8859-2"?>");
?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
 <card title="Mobile WIS">
  <p>
   <?php
    // WIS class
    include("./WIS.class.php");
    // Create WIS object
    $wis = new WIS("xnovak01", "heslo");
    // Print student name  
    echo($wis->getName());
    echo("<br />\n");
    // Multiprint - print data accord IDs
    $courses = array("HSC", "HSC", "BIO");
    $id = array("ZKR", "BODY", "ZN");
    $wis->printCoursesParsed($courses, $id);
   ?>
  </p>
 </card>
</wml>