标签归档:Web

一个简单的AJAX+PHP+Mysql的应用

最近开始PHP语言及Ajax的学习,做个小小的练习记录下来,类似于学习其他语言的”Hello World!“。

1、任务描述

学习XMLHttpRequest对象,通过XMLHttpRequest对象向服务器发出请求,通过服务器端脚本(PHP)获取返回的MySQL中的数据。

2、结构描述

服务器端

请求处理页(SimpleResponse.php)、解析页(parser.php)、模版页(template\template1.html)、数据处理页(sql.php),请求处理页根据选择的模版使用解析页提供的功能对数据进行处理,返回需要的数据。

客户端

测试页(SimpleResponse.html)

3、部分程序代码

3.1 sql.php

<?
  /* 帐号密码等设定 请使用自己的数据库处理代码*/
  $host = "localhost";
  $user = "root";
  $pass = "";
  $database = "test";
  
  function sql_query($query) {
    global $host,$user,$pass,$database;
    $conn=@mysql_connect( $host, $user, $pass );
    $result=@mysql_db_query( $database, $query, $conn);
    @mysql_data_seek($result,0);
    while($row=@mysql_fetch_row($result)) {
      $output[] = $row;
    }
    @mysql_free_result($result);
    @mysql_close($conn);
    return $output;
  }
......

3.2 parser.php

<?
  /*************************************
  功能说明:解析网页模板,并替换标记输出 
  $filename  文件名及位置
  $parser_array  格式为  $array['key']=value
  ***********************************/
 
  function flag_parser($filename,$parser_array) {
    $handle = fopen ($filename, "r");
    $buffer = fread ($handle, filesize ($filename));
    fclose ($handle);
    while(list($key,$value)=each($parser_array)) {
      $buffer = str_replace($key,$value,$buffer);
    }
    return $buffer;
  } 
?>

3.3 template\template1.html

<table width="100%" border="0" cellpadding="0" cellspacing="2" bgcolor="#FFEAFF">
 <tr>
 <td width="10%" bgcolor="#CCCCCC">{ID}</td>
 <td width="30%" bgcolor="#CCCCCC">{Title}</td>
 <td width="40%" bgcolor="#CCCCCC">{Des}</td>
 <td width="20%" bgcolor="#CCCCCC">{Date}</td>
 </tr>
</table>

3.4 simpleResponse.php

<?
 $page = "template/template1.html";
 include(‘sql.php’);
 include(‘parser.php’);
 $sql = "SELECT * FROM `ajaxdatas`";
 $data = sql_query($sql);
 for($i=0;$i<count($data);$i++)
 {
 $array['{ID}'] = $data[$i][0];
 $array['{Title}'] = $data[$i][1];
 $array['{Des}'] = $data[$i][2];
 $array['{Date}'] = $data[$i][3];
 $result .= flag_parser($page,$array);
 }
 echo $result;
?>

3.5 测试页(SimpleResponse.html)

<?xml version="1.0" encoding="gb2312"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Simple XMLHttpRequest</title>
 <script language="JavaScript" type="text/JavaScript">
 var xmlHttp;
 
 function createXMLHttpRequest()
 {
 if (window.ActiveXObject)
 {
 xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
 }
 else if (window.XMLHttpRequest)
 {
 xmlHttp = new XMLHttpRequest();
 }
 }
 function startRequest()
 {
 createXMLHttpRequest();
 xmlHttp.onreadystatechange = handleStateChange;
 xmlHttp.open("POST","SimpleResponse.php",true);
 xmlHttp.send(null);
 }
 function handleStateChange()
 {
 if (xmlHttp.readyState == 4)
 {
 if (xmlHttp.status == 200)
 {
 document.getElementById("results").innerHTML = xmlHttp.responseText;
 }
 }
 }
 </script>
</head>
<body>
<table width="100%" border="0" cellpadding="0" cellspacing="2" bgcolor="#FF9900">
 <tr> 
 <td bgcolor="#FFFFFF"> 
 <div id="results">Click Button Get Datas </div></td>
 </tr>
 <tr> 
 <td bgcolor="#99FF00"> 
 <form action="#">
 <div align="center"> 
 <input type="button" value="Get MySQL Datas" onclick="startRequest();" />
 </div>
 </form></td>
 </tr>
</table>
</body>
</html>

网页布局与设计

制作网页缘于制作自己的Homepage,如果追朔起来要到1999年了,当时一个在一家公司专职做网页的朋友告诉我,做网页的第一步是要会用表格,于是从表格开始了Web Page的制作,整个页需要用表格来进行布局加上表嵌套完成页布局,跟PS或者其他设计工具展现的效果达到一致,从而完成整个Web Page的设计跟制作,中间像各种字体的展现风格(e.g.: font size、color…)以及其他的风格(e.g. :margin、padding),总之整个Web Page包罗万象,从整体页面的布局到内容及内容表现风格全部都体现在整个页中,看起来让人头晕眼花,随着计算机软件开发及基于Web Page开发语言的的发展,逐渐出现了新的Web标准,逐渐的将结构、表现、动作加以分离,形成了新的网页设计布局方法(Div+CSS)。

一直以来从事的工作并不是职业网页开发人员,陆续也听到这种新的设计方法,也大体上了解怎么使用,但一直没有好好钻研一下,昨天抽出一天时间好好看了看这部分的内容,记录下来加以总结。

理解新的Web标准首先要理解的应该就是将表现跟结构分离了,以一个例子来说明:

Example:制作一个页面来说明Delphi中循环语句While的应用说明。

While 语法 while Expression do Statement

说明

while语句的作用跟标准的pascal中一样,当Expression表达式为True时,Delphi便会重复执行Statement语句。一旦Expression为False,Statement就不再执行了。  相关信息:Boolean类型、Continue、Break、Do、For。

采用Table进行布局代码如下

<table width="100%" border="0" cellspacing="0" cellpadding="0">
 <tr>
 <td><h1><font color="#660000">While</font></h1></td>
 </tr>
 </table>
 <table width="100%" border="0" cellspacing="0" cellpadding="0">
 <tr>
 <td height="1" bgcolor="#000066"></td>
 </tr>
 </table>
 <table width="100%" border="0" cellspacing="0" cellpadding="0">
 <tr> 
 <td><font color="#000099">语法</font></td>
 </tr>
 <tr> 
 <td><font color="#FF6600">while Expression do Statement</font> </td>
 </tr>
 <tr> 
 <td><font color="#000099">说明</font></td>
 </tr>
 <tr> 
 <td><font color="#FF6600">while语句的作用跟标准的pascal中一样,当Expression表达式为True时,Delphi便会重复执行Statement语句。一旦Expression为False,Statement就不再执行了。</font></td>
 </tr>
 <tr> 
 <td><font color="#000099">相关信息</font></td>
 </tr>
 <tr>
 <td><font color="#FF6600">Boolean类型、Continue、Break、Do、For</font></td>
 </tr>
 </table>

而采用Div+CSS的方法达到与使用Table同样效果,首先分析整个内容的结构

1级标题: While

2级标题1: 语法

语法正文:while Expression do Statement

2级标题2: 说明

说明正文:while语句的作用跟标准的pascal中一样……

2级标题3:相关信息

相关信息正文:Boolean类型、Continue、Break、Do、For…

分析最终展现界面得到Web页内容

<h1>While</h1>
 <h2>语法</h2>
 <div id="content">while Expression do Statement</div>
 <h2>说明</h2>
 <div id="content">while语句的作用跟标准的pascal中一样……</div>
 <h2>相关信息</h2>
 <div id="content">Boolean类型、Continue、Break、Do、For</div>

针对该Web页面定义CSS样式

h1{
 font:16px Arial;
 color:#660000;
 border-bottom:1px solid #000066
 }
 h2{
 font:14px Arial;
 color:#000099;
 }
 #content{
 width:auto;
 font-size:12px Arial;
 color:#FF6600;
 }

同样的道理,对于设计比较复杂的呈现风格,进行分析逐渐层层分离,最终都可以采用Div+CSS或者Div嵌套+CSS来完成结构跟表现的分离,这样的好处是当页面的表现发生改变的时候而内容不变的情况下可以轻松调整表现风格,同时也使得整个页面的结构比较清晰。

CSS语言有专门的教程跟讨论帖子,具体深入使用可参考相应的教材。