<?php // // This is the MODEL section: // include '../php-ofc-library/open-flash-chart.php'; $title = new title(date("D M d Y")); $bar = new bar(); $bar->set_values( array(9,8,7,6,5,4,3,2,1) ); $chart_1 = new open_flash_chart(); $chart_1->set_title($title); $chart_1->add_element($bar); // generate some random data srand((double)microtime() * 1000000); $tmp = array(); for ($i = 0; $i < 9; $i++) $tmp[] = rand(1, 10); $bar_2 = new bar(); $bar_2->set_values($tmp); $chart_2 = new open_flash_chart(); $chart_2->set_title(new title("Chart 2 :-)")); $chart_2->add_element($bar_2); ?>
//
// This is the VIEW section:
//
<html> <head> <script type="text/<a href="/js_a/js.html" target="_blank">javascript</a>" src="js/json/json2.js"></script> <script type="text/javascript" src="js/swfobject.js"></script> <script type="text/javascript"> swfobject.embedSWF("open-flash-chart.swf", "my_chart", "350", "200", "9.0.0"); </script> <script type="text/javascript"> function ofc_ready() { alert('ofc_ready'); } function open_flash_chart_data() { alert( 'reading data' ); return JSON.stringify(data_1); } function load_1() { tmp = findSWF("my_chart"); x = tmp.load( JSON.stringify(data_1) ); } function load_2() { alert("loading data_2"); tmp = findSWF("my_chart"); x = tmp.load( JSON.stringify(data_2) ); } function findSWF(movieName) { if (navigator.appName.indexOf("Microsoft")!= -1) { return window[movieName]; } else { return document[movieName]; } } var data_1 = <?php echo $chart_1->toPrettyString(); ?>; var data_2 = <?php echo $chart_2->toPrettyString(); ?>; </script> </head> <body> <p>Open Flash Chart</p> <div id="my_chart"></div> <br> <a href="javascript:load_1()">display data_1</a> || <a href="javascript:load_2()">display data_2</a> <p> Don't forget to 'view source' to see how the Javascript JSON data is loaded. </p> </body> </html>
教程链接:
随意转载~但请保留教程地址★

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),