|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /home/queenjbs/www/FusionChart/Code/CFM/FormBased/ |
Upload File : |
<HTML>
<HEAD>
<TITLE>
FusionCharts - Form Based Data Charting Example
</TITLE>
<style type="text/css">
<!--
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.text{
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
-->
</style>
</HEAD>
<BODY>
<!---
In this example, we first present a form to the user, to input data.
For a demo, we present a very simple form intended for a Restaurant to indicate
sales of its various product categories at lunch time (for a week).
The form is rendered in this page (Default.cfm). It submits its data to
Chart.cfm. In Chart.cfm, we retrieve this data, convert into XML and then
render the chart.
So, basically this page is just a form.
--->
<CENTER>
<h2>FusionCharts Form-Based Data Example</h2>
<p class='text'>Please enter how many items of each category you sold within this week. We'll plot this data on a Pie chart. </p>
<p class='text'>To keep things simple, we're not validating for non-numeric data here. So, please enter valid numeric values only. In your real-world applications, you can put your own validators.</p>
<FORM NAME='SalesForm' ACTION='Chart.cfm' METHOD='POST'>
<table width='50%' align='center' cellpadding='2' cellspacing='1' border='0' class='text'>
<tr>
<td width='50%' align='right'>
<B>Soups:</B>
</td>
<td width='50%'>
<input type='text' size='5' name='Soups' value='108'> bowls
</td>
</tr>
<tr>
<td width='50%' align='right'>
<B>Salads:</B>
</td>
<td width='50%'>
<input type='text' size='5' name='Salads' value='162'> plates
</td>
</tr>
<tr>
<td width='50%' align='right'>
<B>Sandwiches:</B>
</td>
<td width='50%'>
<input type='text' size='5' name='Sandwiches' value='360'> pieces
</td>
</tr>
<tr>
<td width='50%' align='right'>
<B>Beverages:</B>
</td>
<td width='50%'>
<input type='text' size='5' name='Beverages' value='171'> cans
</td>
</tr>
<tr>
<td width='50%' align='right'>
<B>Desserts:</B>
</td>
<td width='50%'>
<input type='text' size='5' name='Desserts' value='99'> plates
</td>
</tr>
<tr>
<td width='50%' align='right'>
</td>
<td width='50%'>
<input type='submit' value='Chart it!'>
</td>
</tr>
<table>
</FORM>
</CENTER>
</BODY>
</HTML>