?? demo_4.php
字號(hào):
<?php
$poll_path = dirname(__FILE__);
if (eregi("WIN",PHP_OS)) {
$poll_path = str_replace("\\","/",$poll_path);
}
require ("./poll_cookie.php");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
?>
<html>
<head>
<title>Demo 4</title>
<style type="text/css">
<!--
.code { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px}
-->
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table border="0" cellspacing="0" cellpadding="4" width="400">
<tr>
<td> <font face="Verdana, Arial, Helvetica, sans-serif" size="2"><a href="demo_1.php" target="_self">Demo
1</a></font></td>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><a href="demo_2.php" target="_self">Demo
2</a></font></td>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><a href="demo_3.php" target="_self">Demo
3</a></font></td>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><a href="demo_4.php" target="_self">Demo
4</a></font></td>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><a href="demo_5.shtml" target="_self">Demo
5</a></font></td>
<td><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><a href="demo_6.php" target="_self">Demo
6</a></font></td>
</tr>
</table>
<hr>
<br>
<table cellpadding="0" cellspacing="0">
<tr>
<td class="code" valign="top" align="left"> <font color="#003366"><font color="#666666"><?php</font><font color="#003366">
</font><font color="#003366"><font color="#0000FF"><br>
<font color="#009999">/* Include this before your html code */</font><br>
include</font> "./poll_cookie.php"</font>;<font color="#003366">
<font color="#666666"><br>
?><br>
</font></font> </font>
<hr size="1">
<font color="#003366"><font color="#666666"><?php<br>
<br>
</font></font> <font color="#009999">/* path */</font><br>
$poll_path = <font color="#003366">"<?php echo $poll_path; ?>"</font>;<font color="#009900"><br>
</font><br>
<font color="#0000FF">require</font> $poll_path.<font color="#003366">"/include/config.inc.php"</font>;<br>
<font color="#0000FF">require</font> $poll_path.<font color="#003366">"/include/$POLLDB[class]"</font>;<br>
<font color="#0000FF">require</font> $poll_path.<font color="#003366">"/include/class_poll.php"</font>;<br>
<font color="#0000FF">require</font> $poll_path.<font color="#003366">"/include/class_pollcomment.php"</font>;<br>
$CLASS["db"] = <font color="#0000FF">new</font> polldb_sql;<br>
$CLASS["db"]->connect(); <br>
<br>
$php_poll = new pollcomment();<br>
<br>
<font color="#009999">/* question */</font><br>
<font color="#0000FF">echo</font> $php_poll->get_poll_question(<font color="#FF0000">2</font>);<br>
<br>
<br>
<font color="#009999">/* poll */</font><br>
$php_poll->set_template_set(<font color="#003366">"plain"</font>);<br>
$php_poll->set_max_bar_length(<font color="#FF0000">125</font>);<br>
$php_poll->set_max_bar_height(<font color="#FF0000">10</font>);<br>
<font color="#0000FF">echo</font> $php_poll->poll_process(<font color="#FF0000">2</font>);<br>
<br>
<br>
<font color="#009999">/* construct the form */</font><br>
$php_poll->set_template(<font color="#003366">"poll_form"</font>);<br>
$php_poll->set_form_error(<font color="#0000FF">array</font>(<br>
"name" => <font color="#003366">"Please
enter your name."</font>,<br>
<font color="#009999"> // "email" => "You must specify
your e-mail address.",</font><br>
"message" => <font color="#003366">"You
must specify a message."</font><br>
));<br>
$html_form = $php_poll->comment_process(<font color="#FF0000">2</font>);<br>
<br>
<br>
<font color="#009999">/* poll comments */</font><br>
$php_poll->set_template(<font color="#003366">"poll_comment"</font>);<br>
$php_poll->set_comments_per_page(<font color="#FF0000">5</font>);<br>
$php_poll->set_date_format(<font color="#003366">"d/m/Y H:i"</font>);<br>
$php_poll->data_order_by(<font color="#003366">"time","desc"</font>);<br>
<font color="#0000FF">echo</font> $php_poll->view_poll_comments(<font color="#FF0000">2</font>);<br>
<font color="#0000FF">echo</font> $php_poll->get_comment_pages(<font color="#FF0000">2</font>);
<br>
<br>
<font color="#009999">/* form */</font><br>
<font color="#0000FF">echo</font> $html_form;<br>
<br>
?<font color="#003366"><font color="#003366"><font color="#666666">><br>
</font></font></font></td>
<td width="10" align="center"> </td>
<td width="2" bgcolor="#999999" align="center"> </td>
<td width="20" align="center" valign="top"> </td>
<td valign="top">
<?php
require $poll_path."/include/config.inc.php";
require $poll_path."/include/$POLLDB[class]";
require $poll_path."/include/class_poll.php";
require $poll_path."/include/class_pollcomment.php";
$CLASS["db"] = new polldb_sql;
$CLASS["db"]->connect();
$php_poll = new pollcomment();
/* question */
echo "<h4>".$php_poll->get_poll_question(2)."</h4>";
/* poll */
$php_poll->set_template_set("plain");
$php_poll->set_max_bar_length(125);
$php_poll->set_max_bar_height(10);
echo $php_poll->poll_process(2);
/* construct the form */
$php_poll->set_template("poll_form");
$php_poll->set_form_error(array(
"name" => "Please enter your name.",
// "email" => "You must specify your e-mail address.",
"message" => "You must specify a message."
));
$html_form = $php_poll->comment_process(2);
/* poll comments */
$php_poll->set_template("poll_comment");
$php_poll->set_comments_per_page(5);
$php_poll->set_date_format("d/m/Y H:i");
$php_poll->data_order_by("time","desc");
echo $php_poll->view_poll_comments(2);
echo "<center><font size=1 face=Verdana>".$php_poll->get_comment_pages(2)."</font></center>";
/* form */
echo $html_form;
?>
</td>
<td align="center" valign="top"> </td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -