diff options
author | Sam Ruby <rubys@php.net> | 2000-04-05 09:21:19 +0000 |
---|---|---|
committer | Sam Ruby <rubys@php.net> | 2000-04-05 09:21:19 +0000 |
commit | eb70d8361b2e8c788b6d50ad027e86abe0e07916 (patch) | |
tree | 4d6966d21e4311e03db353786e2271998baa058a /ext/java | |
parent | 5c40dfa374e0ccb93c962ad6b2f8aa93adf9273f (diff) | |
download | php-git-eb70d8361b2e8c788b6d50ad027e86abe0e07916.tar.gz |
Make it clear that the jawt example is only intented to be run as a CGI
Diffstat (limited to 'ext/java')
-rw-r--r-- | ext/java/jawt.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/java/jawt.php b/ext/java/jawt.php index db06949100..30f2235611 100644 --- a/ext/java/jawt.php +++ b/ext/java/jawt.php @@ -1,7 +1,6 @@ <? - // this example makes about as much sense from a web server perspective as, - // say, launching and interacting with Microsoft word. <grin> + // This example is only intented to be run as a CGI. $frame = new Java("java.awt.Frame", "Zend"); $button = new Java("java.awt.Button", "Hello Java world!"); |