--- /dev/null
+<?php
+
+global $preWebComponents, $webComponents, $postWebComponents;
+
+
+function goWebProcessor()
+{
+ global $preWebComponents, $webComponents, $postWebComponents;
+
+ foreach($preWebComponents as $function) {
+ if(function_exists($function)) $function();
+ }
+
+ foreach($webComponents as $function) {
+ if(function_exists($function)) $function();
+ }
+
+ foreach($postWebComponents as $function) {
+ if(function_exists($function)) $function();
+ }
+}
+?>
\ No newline at end of file
require_once("../lib/lib.php");
+if(function_exists("goWebProcessor")) {
+ goWebProcessor();
+ exit(0);
+}
+
?>
<html>
-<pre>
-<?php
-print_r($GLOBALS);
-print_r($_REQUEST);
-print_r($_SERVER);
-?>
-</pre>
-</html>
\ No newline at end of file
+<body>
+No Web Component Installed
+</body>
+</html>