$line) { list($vname,$vval,$vcomment) = explode("|",trim($line).'|||'); if ($vname <> "" and strpos($vval,'$') === false) { $WX[$vname] = trim($vval); if($vcomment <> "") { $WXComment[$vname] = trim($vcomment); } } $nscanned++; } if(isset($_REQUEST['debug'])) { print "\n"; } if (isset($_REQUEST["sce"]) and strtolower($_REQUEST["sce"]) == "dump" ) { print "
\n";
  print "// \$WX[] array size = $nscanned entries.\n";
  foreach ($WX as $key => $val) {
	  $t =  "\$WX['$key'] = '$val';";
	  if(isset($WXComment[$key])) {$t .=  " $WXComment[$key]"; }
	  print "$t\n";
  }
  print "
\n"; } if(file_exists("MB-defs.php")) { include_once("MB-defs.php"); } ?>