- 论坛徽章:
- 0
|
最近练习写Class,这次是MySQL.class.php,请指点
我贴一下我写的留言簿, 然后学学你写类的手法可以简化一下我的页面!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/transitional.dtd">;
- <?php
- function flag_error ($fieldname, $errstr)
- {
- global $field_with_errors, $errors;
- $field_with_errors[$fieldname] = 1;
- $errors[] = $errstr;
- }
- function has_error ($fieldname)
- {
- global $field_with_errors;
- if (isset ($field_with_errors[$fieldname]) )
- return true;
- return false;
- }
- $p = & $_POST;
- $errors = array();
- if (count ($p) >; 0 )
- {
- //error checking
- if ( trim($p['name']) =='')
- flag_error ('name', '请输入您的姓名');
- if ( trim($p['email']) =='')
- flag_error ('email', '请输入您的E-mail');
- if ( trim($p['title']) =='')
- flag_error ('title', '请输入您的留言主题');
- if ( empty($p['content']))
- flag_error ('content', '请输入您的留言内容');
- if ( count ($errors) == 0 )
- {
- $hostname="localhost";
- $user="";
- $passwd="";
- $database="house";
- $dbc=mysql_pconnect($hostname, $user, $passwd) or die ("Sorry, connect database error");
- mysql_select_db($database, $dbc) or die ("Sorry, select database ".$database." error");
- $data=date("Y-m-j h:i:s");
- $name = $p['name'];
- $url = $p['url'];
- $email = $p['email'];
- $title = $p['title'];
- $content = $p['content'];
- $query = sprintf( "insert into guestbook(name, url, email, title, content, data) values('%s','%s','%s','%s','%s','%s')",
- addslashes ( $p['name'] ),
- addslashes ( $p['url'] ),
- addslashes ( $p['email'] ),
- addslashes ( $p['title'] ),
- addslashes ( $p['content'] ), $data);
- mysql_query($query) or die(mysql_error());
-
- mysql_close($dbc);
- }
- if ( count ($errors) == 0 )
- {
- //success
- print ('<html>;<head>;');
-
- $cssstyle="
- <style type=\"text/css\">;
- body { font-family:\"Verdana\", \"Arial\", \"Helvetiva\", \"sans-serif\";
- font-size:15px; color:#008000; margin-top:20px; margin-right:20px;
- margin-left:20px; margin-bottom:10px; background-color:#000000; line-height:180%; }
- p { line-height:180%; }
- th,td { font-size:15px; }
- a:link { text-decoration:none; color:#008000; font-size:15px;}
- a:visited { text-decoration:none; color:#008000; font-size:15px; }
- a:hover { text-decoration:none; color:#FFFFFF; text-decoration:blink; background-color:#008000; font-size:15px; }
- a:active { text-decoration:none; color:#008000; font-size:15px; }
- </style>; ";
- print $cssstyle;
- print ('</head>;<body>;');
- echo "<h3 align=\"center\">;感谢您的留言!本站会根据您的留言提供更个性化的服务。<a href=\"view.php\">;<b>;查看所有留言</b>;<a>;</h3>;";
- echo "<table border=\"1\" width=\"80%\" align=\"center\" cellspacing=\"10\" cellpadding=\"10\">;";
- echo "<tr>;";
- echo "<td width=\"50%\">;<img border=\"0\" src=\"yast_sysadmin.gif\" width=\"48\" height=\"48\" />;您的姓名是:".$name."</td>;";
- echo "<td width=\"50%\">;<img border=\"0\" src=\"time.gif\" width=\"48\" height=\"48\" />;留言日期:".$data."</td>;";
- echo "</tr>;";
- echo "<tr>;";
- echo "<td>;<img border=\"0\" src=\"xfmail.gif\" width=\"48\" height=\"48\" />;E-mail: ".$email."</td>;";
- echo "<td>;<img border=\"0\" src=\"mozillacrystal.gif\" width=\"48\" height=\"48\" />;您的主页:<a href=\"".$p['url']."\" target=_blank>;".$p['url']."</a>;</td>;";
- echo "</tr>;";
- echo "<tr>;";
- echo "<td colspan=\"2\">;";
- echo "<h3 align=\"center\">;<img border=\"0\" src=\"kate.gif\" width=\"48\" height=\"48\" />;".$title."</h3>;<br />;";
- echo "<pre>;".$content."</pre>;";
- echo "</td>;</tr>;</table>;";
- print ('</body>;</html>;');
- exit;
- }
- }
- ?>;
- <html>;
- <head>;
- <title>;留言</title>;
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">;
- <?php
- $cssstyle="
- <style type=\"text/css\">;
- body { font-family:\"Verdana\", \"Arial\", \"Helvetiva\", \"sans-serif\";
- font-size:15px; color:#008000; margin-top:20px; margin-right:20px;
- margin-left:20px; margin-bottom:10px; background-color:#000000; line-height:180%; }
- p { line-height:180%; }
- th,td { font-size:15px; }
- a:link { text-decoration:none; color:#008000; font-size:15px;}
- a:visited { text-decoration:none; color:#008000; font-size:15px; }
- a:hover { text-decoration:none; color:#FFFFFF; text-decoration:blink; background-color:#008000; font-size:15px; }
- a:active { text-decoration:none; color:#008000; font-size:15px; }
- </style>; ";
- print $cssstyle;
- ?>;
- </head>;
- <body>;
- <h1 align="center">;留言簿</h1>;
- <h3 align="right">;<a href="view.php">;<b>;查看所有留言</b>;<a>;</h3>;
- <?php
- if ( count($errors) >; 0)
- {
- ?>;
- <p class="error">; 您的留言有一些错误, 请对照错误信息重新填写:</p>;
- <ul>;
- <?php
- $n = count ($errors);
- for ( $i=0; $i < $n; $i ++ )
- print ( "<li class=\"error\">;".$errors[$i]."</li>;<br />;");
- ?>;
- </ur>;
- <?php
- }
- ?>;
- <table align="center" width="80%" cellspacing="15">;
- <tr>;
- <td>;
- <form method="post" action="<?php print( $PHP_SELF); ?>;" class="form">;
- <img border="0" src="yast_sysadmin.gif" width="48" height="48">;姓&&&&名
- <input type="text" name="name" value="<?php
- if (isset ($p['name']))
- print ($p['name']); ?>;" />;
-
- </td>;
- <td>;
- <img border="0" src="xfmail.gif" width="48" height="48">;电子邮件
- <input type="text" name="email" value="<?php
- if (isset ($p['email']))
- print ($p['email']);
- ?>;" />;
-
- </td>;
- </tr>;
- <tr>;
- <td>;
- <img border="0" src="kpaint.gif" width="48" height="48">;留言主题
- <input type="text" name="title" value="<?php
- if (isset ($p['title']))
- print ($p['title']);
- ?>;" />;
-
- </td>;
- <td>;
- <img border="0" src="mozillacrystal.gif" width="48" height="48">;个人主页
- <input type="text" name="url" value="http://">;
-
- </td>;
- </tr>;
- <tr>;
- <td colspan="2">;
- <table width="80%" cellspacing="20">;
- <tr>;
- <td width="100" align="center">;
- <img border="0" src="kate.gif" width="48" height="48">;<br />;
- 留<br />;
- 言<br />;
- 内<br />;
- 容<br />;
- </td>;
- <td >;
- <textarea name="content" rows="10" cols="70" value="<?php
- if (isset ($p['content']))
- print ($p['content']);
- ?>;">;</textarea>;
- </td>;
- </tr>;
- </table>;
- </td>;
- </tr>;
- <tr>;
- <td align="center" colspan="2">;
- <br />;
- <input type="submit" name="确定" value="确定">;
- </form>;
- </td>;
- </tr>;
- </table>;
- </body>;
- </html>;
复制代码
 |
|