php-src/sapi/activescript
Zeev Suraski 76312b4508 another startup initialization fix - only ISAPI and CGI SAPI's tested,
minor compile buglets might occur in other SAPIs, but should be trivial
to fix...
2002-09-18 21:57:42 +00:00
..
classfactory.cpp this way it even compiles 2002-05-20 15:38:19 +00:00
CREDITS Add README and CREDITS... 2002-05-22 00:03:02 +00:00
php4activescript.c another startup initialization fix - only ISAPI and CGI SAPI's tested, 2002-09-18 21:57:42 +00:00
php4activescript.def Implement ActiveScript interfaces. 2002-05-20 01:35:29 +00:00
php4activescript.dsp Implement ActiveScript interfaces. 2002-05-20 01:35:29 +00:00
php4activescript.h Use the GIT for inter-thread marshalling. 2002-05-20 22:22:57 +00:00
php4as_classfactory.h Implement ActiveScript interfaces. 2002-05-20 01:35:29 +00:00
php4as_scriptengine.h Use the GIT for inter-thread marshalling. 2002-05-20 22:22:57 +00:00
README Add README and CREDITS... 2002-05-22 00:03:02 +00:00
scriptengine.cpp Fix bug when length was queried before the string was converted. 2002-05-22 00:02:35 +00:00

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 php4activescript.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"