1、 电子商务网站设电子商务网站设计毕业论文计毕业论文 学 科、专 业:计算机科学与技术 本科生姓名: * * * 指导教师姓名: * * * 第 1 页 共 48 页 摘摘 要要 目前国内使用 Flash 和后台数据库结合的技术来开发电子商 务网站的应用还比较少。 并且目前绝大部分电子商务网站的产品展 示只仅仅停留在文字和二维图片上,消费者不能从多角度,全方位 接触产品。本论文主要阐述作者结合现今热门的 FLASH 和 WEB3D 技术开发一个基 于后台数据 库的多媒体电 子商务网站 的设计思想 和实现的关键技术。 Abstract The application that the techno
2、logy of internal use Flash and backstage supporters database combination was at present developed the e-commerce Web Site is still fairly fewer. And the product of most e-commerce Web Sites is shown only stopping on characters and the two-dimension picture at present, and consumer cannot be from man
3、y angles, and the all direction contacts the product. This thesis is chiefly expounded authors one of technological development FLASH and WEB3D that to combine the nowadays arousing popular interest to based on the multi-medium e-commerce design thought of Web Site and key technology realized of bac
4、kstage supporters database. 关键词关键词:FLASH、WEB3D、PHP、电子商务、电子商务 Keywords:FLASH、WEB3D、PHP、E-commerce 目目 录录 引 言 . 1 第一章 电子商务和电子商务系统的概念 . 1 1.1 电子商务 . 1 1.2 电子商务系统 4 第二章 Flash 技术介绍 . 5 2.1 Flash 技术介绍 5 2.2 Flash 技术的应用现状 6 第三章 WEB3D 和 Cult3D 技术介绍 . 8 3.1 WEB3D 技术介绍 8 第四章 Flash 数据表的结构数据表的结构 order_items CREA
5、TE TABLE order_items ( order_id bigint(32) DEFAULT 0 NOT NULL, product_id bigint(32) DEFAULT 0 NOT NULL, price decimal(9,2) DEFAULT 0.00 NOT NULL, qty int(11) DEFAULT 0 NOT NULL, UNIQUE order_id (order_id), KEY order_id_2 (order_id) ); 数据表的结构数据表的结构 orders CREATE TABLE orders ( username varchar(32) N
6、OT NULL, o_timestamp date, status tinyint(4) DEFAULT 0 NOT NULL, custinfo varchar(32) NOT NULL, comments varchar(255) NOT NULL, amount decimal(12,2) DEFAULT 0.00 NOT NULL, status_details varchar(255) NOT NULL ); 数据表的结构数据表的结构 products 第 19 页 共 48 页 CREATE TABLE products ( id bigint(32) NOT NULL auto_increment, name varchar(255), description varchar(255), price decimal(9,2), parent_id bigint(32), on_special bigint(20), ProductsImage varchar(255), Products3Dmodel va