Re: First time user-tool user.
Reply #9 –
<?php
/*******************************************************************************
rg_Path.php Version 1.00
This script shows the version of the Starter Kit that is installed and
the install path for NWC2.x as retrieved from the Registry.
*******************************************************************************/
require_once("lib/nwc2clips.inc");
require_once("lib/nwc2config.inc");
$libver = NWC2ClipLibVersion();
$appPath = NWC2CONFIG_AppFolder;
$usermsg = <<<__EOMSG
Clip Library Version: $libver
App Path: $appPath
__EOMSG;
fputs(STDOUT,$usermsg);
exit(NWC2RC_REPORT);
?>