summaryrefslogtreecommitdiff
path: root/sapi/activescript/README
diff options
context:
space:
mode:
authorSVN Migration <svn@php.net>2004-01-25 12:03:25 +0000
committerSVN Migration <svn@php.net>2004-01-25 12:03:25 +0000
commit22476b36ce621bdd115493bab84cbe706e422a7c (patch)
tree1124d1c5af68860a78c2252bb0dac63c9f18156e /sapi/activescript/README
parenteb7aca4ea896b09cb9afc2466a46f4720acc4a4e (diff)
downloadphp-git-php_ibase_before_split.tar.gz
This commit was manufactured by cvs2svn to create tagphp_ibase_before_split
'php_ibase_before_split'.
Diffstat (limited to 'sapi/activescript/README')
-rw-r--r--sapi/activescript/README56
1 files changed, 0 insertions, 56 deletions
diff --git a/sapi/activescript/README b/sapi/activescript/README
deleted file mode 100644
index 70f49821d8..0000000000
--- a/sapi/activescript/README
+++ /dev/null
@@ -1,56 +0,0 @@
-This is the ActiveScript SAPI for PHP.
-======================================
-
-Once registered on your system (using regsvr32), you will be able to use
-PHP script in any ActiveScript compliant host. The list includes:
-
-o. Client-side script in Internet Explorer
-o. Windows Script Host
-o. ASP and ASP.NET
-o. Windows Script Components / Behaviours
-o. MS Scriptlet control
-
-Probably the most useful of these will be using it with the scriptlet
-control, or in your own activescript host, so that you can very easily
-embed PHP into your win32 application.
-
-Installation.
-=============
-
-Build and install it somewhere; then register the engine like this:
-
- regsvr32 php5activescript.dll
-
-Usage.
-======
-
-o. Client-side script in Internet Explorer
-
- <script language="ActivePHP">
- $window->alert("Hello");
- </script>
-
-o. Windows Script Host
-
- Create a .wsf file like this:
-
- <job id="test">
- <script language="ActivePHP">
- $WScript->Echo("Hello");
- </script>
- </script>
-
-o. ASP and ASP.NET
-
- <%@language=ActivePHP %>
- <% $Response->Write("Hello"); %>
-
-o. Windows Script Components / Behaviours
-
- Use language="ActivePHP" on your <script> tags
-
-o. MS Scriptlet control
-
- Set the language property to "ActivePHP"
-
-