社区应用 最新帖子 精华区 社区服务 会员列表 统计排行
主题 : 背单词插件MySQL版
级别: 侠客
显示用户信息 
0  发表于: 2004-05-10   

背单词插件MySQL版

呵,这是水妹在原论坛上发的,一直觉得不错的,现在再放出来,喜欢的快来!!

插件名称:英语单词学习

适用版本:Discuz! 2.X
插件作者:水镜梵天
最后更新:2003.12.5
修改文件:viewthread.php
修改模版:viewthread.htm
安装难易:易

本插件是根据JackMing的文本插件修改的,在数据库中增加了一个表,内容为2004年考研英语词汇。其中音标的显示需要安装金山的Kingsoft Phonetic Plain字体。

安装步骤

1、导入stu_glossary001.sql
2、viewthread.php

查找 
复制代码
  1. while( $post =  $db->fetch_array( $querypost)) {

后面添加
复制代码
  1. //背单词插件开始
  2.  $id =rand(1,6262);
  3.    $query = "SELECT * FROM stu_glossary001 WHERE 1 and id =  $id ";
  4.    $result = mysql_query( $query) or die("Query failed");
  5. while ( $line = mysql_fetch_array( $result, MYSQL_ASSOC)) {
  6.    $post[word] = "<font color='red'>2004年考研英语词汇助记</font>  <font color='green'> $line[word] [</font><font face='Kingsoft Phonetic Plain' color='green'> $line[tone]</font><font color='green'>]  $line[cn]</font>";
  7. }
  8. mysql_free_result( $result);
  9. //背单词插件结束

3、viewthread.htm
查找
复制代码
  1.  $post[karma]

后面添加
复制代码
  1.  $post[word]<br><br>


下载下面的压缩包,把stu_glossary001.sql导入到论坛的数据库中即可,压缩包中另外还带有金山的Kingsoft Phonetic Plain字体。

http://211.86.126.217/sjft/word.rar

演示:http://211.86.126.217/discuz/


[此贴被sinhua在2004-05-10 14:43重新编辑]
描述
快速回复

按"Ctrl+Enter"直接提交