home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.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.