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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
PHP Script
|
2004-03-24
|
283 b
|
11 lines
<?php
/**
* A file intended for testing output direction in the HTML_Javascript class
*/
require_once('HTML/Javascript.php');
$js = new HTML_Javascript();
$js->setOutputMode(HTML_JAVASCRIPT_OUTPUT_FILE, '/tmp/out.js');
$js->prompt('Foo?', 'foo', 'Bar!');
$js->alert('Muhahaha!');
?>