home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / xamp / xampp-win32.exe / xampp / output.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  283 b   |  11 lines

  1. <?php
  2. /**
  3. * A file intended for testing output direction in the HTML_Javascript class
  4. */
  5. require_once('HTML/Javascript.php');
  6. $js = new HTML_Javascript();
  7. $js->setOutputMode(HTML_JAVASCRIPT_OUTPUT_FILE, '/tmp/out.js');
  8. $js->prompt('Foo?', 'foo', 'Bar!');
  9. $js->alert('Muhahaha!');
  10. ?>
  11.