Folder reorganize 1
This commit is contained in:
@@ -0,0 +1,89 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Set Up Page</title>
|
||||
<LINK REL=STYLESHEET TYPE="text/css" HREF="./pageTemplates/sampleApplication.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Robot Corporation</h1>
|
||||
<h3>Sample Sales Reporting Application</h3>
|
||||
|
||||
<p></p>
|
||||
|
||||
<!-- NOTE: the dbinfo and config file paths are relative to the graph code not the page -->
|
||||
<!--
|
||||
<img src="../graph/vertical-bar-graph.php?
|
||||
dbinfo=../sampleApplication/dataQueries/homePagedbConfig.php&
|
||||
config=../sampleApplication/graphConfig/homePageVbar.txt"
|
||||
width="550"
|
||||
height="400">
|
||||
-->
|
||||
|
||||
<!-- NOTE: the dbinfo and config file paths are relative to the graph code not the page -->
|
||||
<img src="../graph/pie-chart.php?
|
||||
dbinfo=../sampleApplication/dataQueries/homePagedbConfig.php&
|
||||
config=../sampleApplication/graphConfig/homePagePieChart.txt"
|
||||
width="550"
|
||||
height="400">
|
||||
|
||||
<div class="linkArea">
|
||||
<p>The chart above shows the total sales during 2008 for each product type.</p>
|
||||
<a href="salesByMonth.html">Sales by Month »</a><br>
|
||||
<a href="salesByMonthStacked.html">Sales by Month - Stacked Bars »</a><br>
|
||||
<a href="salesByRegion.html">Sales by Region »</a><br>
|
||||
<a href="salesByRegionStacked.html">Sales by Region - Stacked Cylinders »</a><br>
|
||||
</div>
|
||||
|
||||
<div class="codeInfoBlock">
|
||||
|
||||
<h2>Page Notes</h2>
|
||||
|
||||
<p>The graph above is produced using the "Database Info" method with the following IMG tag:-<br>
|
||||
<textarea>
|
||||
<img src="../graph/pie-chart.php?
|
||||
dbinfo=../sampleApplication/dataQueries/homePagedbConfig.php&
|
||||
config=../sampleApplication/graphConfig/homePagePieChart.txt"
|
||||
width="550"
|
||||
height="400">
|
||||
</textarea>
|
||||
</p>
|
||||
|
||||
<p>The graph data is read directly from the database using the information contained in the file:-<br>
|
||||
<textarea style="height: 20px;">
|
||||
/sampleApplication/dataQueries/homePagedbConfig.php
|
||||
</textarea>
|
||||
</p>
|
||||
|
||||
<p>The settings and styles are set from the information contained in the file:-<br>
|
||||
<textarea style="height: 20px;">
|
||||
/sampleApplication/graphConfig/homePagePieChart.txt
|
||||
</textarea>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div style="width: 700px; padding: 8px; background-color: #FFE57F; border-width: 1px; border-color: #544E38; border-style: solid; margin: 4px;">
|
||||
<h2>Next Steps</h2>
|
||||
|
||||
<h4>Documentation Contents</h4>
|
||||
<a href="http://www.jpowered.com/php-scripts/adv-graph-chart/documentation/index.htm">Documentation »</a><br>
|
||||
<a href="http://www.jpowered.com/php-scripts/adv-graph-chart/documentation/addingGraphsToPages.htm">Adding Graphs to Web Pages »</a><br>
|
||||
<a href="http://www.jpowered.com/php-scripts/adv-graph-chart/documentation/configurationOptions.htm">Configuration Options and Parameters »</a><br>
|
||||
<a href="http://www.jpowered.com/php-scripts/adv-graph-chart/documentation/graphData.htm">Supplying the Graph with Data »</a><br>
|
||||
|
||||
<h4>Database Connections</h4>
|
||||
<a href="http://www.jpowered.com/php-scripts/adv-graph-chart/documentation/databaseInformationFile.htm">Database Information method »</a><br>
|
||||
<a href="http://www.jpowered.com/php-scripts/adv-graph-chart/documentation/customDataFunction.htm">Custom Data Function »</a><br>
|
||||
|
||||
<h4>Also see:-</h4>
|
||||
|
||||
<a href="http://www.jpowered.com/php-scripts/adv-graph-chart/tutorials/">Online Tutorials »</a><br>
|
||||
<a href="http://www.jpowered.com/php-scripts/adv-graph-chart/documentation/">Online Documentation »</a><br>
|
||||
|
||||
If you encounter any problems then please feel free to contact <a href="http://www.jpowered.com/support.htm">JPowered Support »</a>.
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,37 @@
|
||||
body {background-color: #FFF;font-family: Arial, Helvetica, sans-serif;color: #000000;font-size: 11px; padding: 20px;}
|
||||
H1 { color: #320099; font-size: 18px; font-family: Arial,Helvetica, sans-serif;font-weight:bold; margin:5px;}
|
||||
H2 { color: #000000; font-size: 16px; font-family: Arial,Helvetica, sans-serif;font-style:italic; margin:5px;}
|
||||
H4 { color: #000000; font-size: 12px; font-family: Arial,Helvetica, sans-serif;font-style: none; margin: 10px 4px 2px 4px;}
|
||||
p {margin:5px;}
|
||||
a, a:active, a:link, a:visited {font-weight: bold;color:#0000FF;text-decoration: none;font-size:11px;}
|
||||
a:hover {font-weight: bold;color:#FF0000;text-decoration: none;}
|
||||
|
||||
|
||||
.codeInfoBlock {
|
||||
background-color: #FFE57F;
|
||||
border: #654C99;
|
||||
font-size: 12px;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
color: #000;
|
||||
width: 700px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.codeInfoBlock textarea {
|
||||
width: 680px;
|
||||
height: 100px;
|
||||
background-color: #654C99;
|
||||
color: #fff;
|
||||
border-color: #17131E;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.linkArea {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
font-size: 12px;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Set Up Page</title>
|
||||
<LINK REL=STYLESHEET TYPE="text/css" HREF="./pageTemplates/sampleApplication.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Sample Sales Reporting Application - Set Up Procedure</h1>
|
||||
|
||||
<p>[ERRORS]</p>
|
||||
|
||||
<p>Sample Application Set Up Complete.</p>
|
||||
<p><a href="index.php">view Sample Application</a></p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,18 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Set Up Page</title>
|
||||
<LINK REL=STYLESHEET TYPE="text/css" HREF="./pageTemplates/sampleApplication.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Sample Sales Reporting Application - Set Up Procedure</h1>
|
||||
|
||||
<p>[ERRORS]</p>
|
||||
|
||||
<p>Unfortunately an error occurred the set up process.</p>
|
||||
<p><a href="index.php">return and try again.</a></p>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,40 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Set Up Page</title>
|
||||
<LINK REL=STYLESHEET TYPE="text/css" HREF="./pageTemplates/sampleApplication.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Sample Sales Reporting Application - Set Up Procedure</h1>
|
||||
|
||||
<p>[ERRORS]</p>
|
||||
|
||||
Enter the Database Login information here:-
|
||||
<form id="FORM_setup" name="FORM_setup" method="post" action="index.php">
|
||||
<table>
|
||||
<tr>
|
||||
<td>Server</td>
|
||||
<td><input style="width: 400px;" name="dbServer" type="text" value="[DBSERVER]"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>User</td>
|
||||
<td><input style="width: 400px;" name="dbUser" type="text" value="[DBUSER]"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Password</td>
|
||||
<td><input style="width: 400px;" name="dbPassword" type="password" value="[DBPASSWORD]"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><input name="submit" value="Begin SetUp" type="submit"></td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user