HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/awaldron/public_html/archive/demo/guidebook/index.php
<?php
if (isset($_GET["gb"])) {
	include("../_functions.php");
	dbconnect();
	
	$sql = "SELECT gb_name FROM tbl_guidebooks WHERE gb_id=".$_GET["gb"];
	$res = mysql_query($sql);
	extract(mysql_fetch_array($res));
	add_log($gb_name);

	echo "<html>\n";
	echo "<head>\n";
	echo "<title>Vocollect Inc. : Vocollect Guidebook</title>\n";
	echo "<script language=\JavaScript\" type=\"text/javascript\">\n";
	echo "<!--\n";
	echo "function openWindow(theURL,winName,features) { //v2.0\n";
	echo "	window.open(theURL,winName,features);\n";
	echo "}\n";
	echo "-->\n";
	echo "</script>\n";
	echo "</head>\n";

	echo "<script>\n";
	echo "self.resizeTo((screen.width-125),(screen.height-125));\n";
	echo "window.location.href = \"http://intranet.vocollect.int/guidebook/page.php?gb=".$_GET["gb"]."\";\n";
	echo "</script>\n";
	echo "</html>\n";
}
?>