| 1 |
<?php |
|---|
| 2 |
$loginNoKick=true; |
|---|
| 3 |
$loginNoDisplayError=true; |
|---|
| 4 |
require("include/session.php"); |
|---|
| 5 |
|
|---|
| 6 |
if(isset($dblink)){ |
|---|
| 7 |
$querystatement="SELECT displayname,version from modules ORDER BY id"; |
|---|
| 8 |
$queryresult=mysql_query($querystatement,$dblink); |
|---|
| 9 |
} else |
|---|
| 10 |
$queryresult=""; |
|---|
| 11 |
|
|---|
| 12 |
function displayVersions($queryresult){ |
|---|
| 13 |
if($queryresult){ |
|---|
| 14 |
while($therecord=mysql_fetch_array($queryresult)){ |
|---|
| 15 |
if($therecord["displayname"]!="Base"){ |
|---|
| 16 |
echo $therecord["displayname"].": "; |
|---|
| 17 |
echo "v".$therecord["version"]."<br />"; |
|---|
| 18 |
} else |
|---|
| 19 |
echo "<span class=\"important\">v".$therecord["version"]."</span><br /><br />"; |
|---|
| 20 |
} |
|---|
| 21 |
} |
|---|
| 22 |
} |
|---|
| 23 |
|
|---|
| 24 |
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
|---|
| 25 |
<html> |
|---|
| 26 |
<head> |
|---|
| 27 |
<title>phpBMS Information</title> |
|---|
| 28 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
|---|
| 29 |
<link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /> |
|---|
| 30 |
<style>li{margin-bottom:4px;}</style> |
|---|
| 31 |
</head> |
|---|
| 32 |
|
|---|
| 33 |
<body><?php if(isset($_SESSION["app_path"])) include("menu.php")?> |
|---|
| 34 |
<div class="bodyline" style="width:700px;"> |
|---|
| 35 |
<h1 style="margin-bottom:20px;">Commercial Open Source Business Management Web Application</h1> |
|---|
| 36 |
<div style="float:right;background-color:white;padding:10px;margin-right:20px;" align="right" class="box small"> |
|---|
| 37 |
<img src="common/image/logo-large.png" width="250" height="57" /><br /> |
|---|
| 38 |
<?php displayVersions($queryresult)?> |
|---|
| 39 |
</div> |
|---|
| 40 |
<div style="width:300px;padding-bottom:0px;"> |
|---|
| 41 |
<div class="small"> |
|---|
| 42 |
Copyright © 2004 -2005 kreotek, llc. All Rights Reserved. |
|---|
| 43 |
phpBMS, and the phpBMS logo are trademarks of kreotek, llc. |
|---|
| 44 |
</div> |
|---|
| 45 |
<div style="padding:10px; padding-bottom:0px;"> |
|---|
| 46 |
<div class="large important">Kreotek, LLC</div> |
|---|
| 47 |
<div style="" class="small"> |
|---|
| 48 |
481 Rio Rancho Blvd.<br /> |
|---|
| 49 |
Rio Rancho, NM 87124 |
|---|
| 50 |
</div> |
|---|
| 51 |
<div class="important" style="padding-bottom:0px;">Contact Information</div> |
|---|
| 52 |
<div style="padding-top:0px;" class="small"> |
|---|
| 53 |
web: <a href="http://www.kreotek.com">http://www.kreotek.com</a><br /> |
|---|
| 54 |
sales: <a href="mailto:sales@kreotek.com">sales@kreotek.com</a><br /> |
|---|
| 55 |
support: <a href="mailtosupport@kreotek.com">support@kreotek.com</a><br /> |
|---|
| 56 |
phone: <strong>1-800-731-8026</strong> |
|---|
| 57 |
</div> |
|---|
| 58 |
</div> |
|---|
| 59 |
</div> |
|---|
| 60 |
<div style="padding-top:0px;"> |
|---|
| 61 |
<h2>Source Code</h2> |
|---|
| 62 |
<ul> |
|---|
| 63 |
<li><strong>phpBMS</strong> - Commercial Open Source Business Management Web Appllication (<a href="http://www.kreotek.com">www.kreotek.com</a>)</li> |
|---|
| 64 |
<li><strong>fpdf</strong> - A PHP class which allows to generate PDF files with pure PHP (<a href="http://www.fpdf.org">www.fpdf.org</a>)</li> |
|---|
| 65 |
</ul> |
|---|
| 66 |
<h2>Technologies</h2> |
|---|
| 67 |
<ul> |
|---|
| 68 |
<li><strong>php</strong> - |
|---|
| 69 |
A widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. (<a href="http://www.php.net">www.php.net</a>)</li> |
|---|
| 70 |
<li><strong>MySQL</strong> - An open source relational database management system (RDBMS) that uses Structured Query Language (SQL) (<a href="http://www.mysql.org">www.mysql.org</a>)</li> |
|---|
| 71 |
<li><strong>AJAX</strong> - Asynchronous Javascript And XML is a group of technologies that help browser based applications behave more like applications you run from your desktop.</li> |
|---|
| 72 |
</ul> |
|---|
| 73 |
</div> |
|---|
| 74 |
<?php if(!isset($_SESSION["app_path"])) {?> |
|---|
| 75 |
<div class="box" align="right" style="clear:both"> |
|---|
| 76 |
<br /> |
|---|
| 77 |
<input type="button" value="back to login page" class="Buttons" onClick="document.location='index.php'"/> <br/> |
|---|
| 78 |
<br /> |
|---|
| 79 |
</div> |
|---|
| 80 |
<?php } ?> |
|---|
| 81 |
</div> |
|---|
| 82 |
</body> |
|---|
| 83 |
</html> |
|---|
| 84 |
|
|---|