Velocd
07-15-2004, 02:05 AM
http://www.sitepoint.com/blog-post-view.php?id=181248
Called ActivePHP sapi, it can be used in any ActiveScript compatible host. Requires PHP5.
(ref: http://netevil.org/wiki.php?WezFurlong)
I messed with it a bit, it's weird and buggy, IE-only, but moreover I don't see a reason for server side to make it's way to client side. I guess the server-side gurus were just interested to see if it was possible. ;)
<html>
<head>
<title>PHP ActiveScript</title>
</head>
<body>
<script language="ActivePHP5">
$document->write('<h1>Output generated by '. phpversion().
' ['.php_sapi_name().']</h1>');
$document->write('<p>Available objects</p>');
foreach ( array_keys($GLOBALS) as $global_var ) {
if ( is_object($GLOBALS[$global_var]) ) {
$document->write($global_var."<br>");
}
}
</script>
</body>
</html>
:ninja:
Called ActivePHP sapi, it can be used in any ActiveScript compatible host. Requires PHP5.
(ref: http://netevil.org/wiki.php?WezFurlong)
I messed with it a bit, it's weird and buggy, IE-only, but moreover I don't see a reason for server side to make it's way to client side. I guess the server-side gurus were just interested to see if it was possible. ;)
<html>
<head>
<title>PHP ActiveScript</title>
</head>
<body>
<script language="ActivePHP5">
$document->write('<h1>Output generated by '. phpversion().
' ['.php_sapi_name().']</h1>');
$document->write('<p>Available objects</p>');
foreach ( array_keys($GLOBALS) as $global_var ) {
if ( is_object($GLOBALS[$global_var]) ) {
$document->write($global_var."<br>");
}
}
</script>
</body>
</html>
:ninja: