目录
OR
Tag Cloud using php and mysql 
首页 php教程 php手册 PHP和MySQL生成的标签云实现代码

PHP和MySQL生成的标签云实现代码

May 25, 2016 pm 04:51 PM
mysql 标签 生成

用户输入文本和输入的文本在过去的一个标签云,标签云是一个用户生成的标签的可视化描述,或只是一个网站的文字内容,通常用来描述网站的内容。

为此,我们将创建一个HTML表格,将接受用户文本,也让用户可以看到从 MySQL数据库,其中包含在过去输入的文本生成的标签云,代码如下:

<?php
echo &#39;<form method="post" action="tag_cloud_gen.php" name="gen_tag_db">&#39;;
echo &#39;<p>Input your text here:<br /><textarea name="tag_input" rows="20" cols="80"></textarea></p>&#39;;
echo &#39;<input type="submit" name="submit">&#39;;
echo &#39;</form>&#39;;
?>
<br /> 
<h3 id="OR">OR</h3> 
<br /> 
<p>see the current tag cloud here</p> 
<?php
echo &#39;<form name="show_tag_cloud" method="post" action="show_tag_cloud.php">&#39;;
echo &#39;<input type="submit" value="show current tag cloud" >&#39;;
echo &#39;</form>&#39;;
?>
登录后复制

其中每个计算其频率和对将进入一个数组,输入的文本将被表征为单个词。然后将这个数组存储到一个MySQL数据库,我们可以选择保存在MySQL数据库表coloumn存储任何链接,如果这个项目未来的扩展。

1) tag_id -- int,primary key,auto increament 1)tag_id - 整型,主键,自动increament

2) keyword - varchar(20),unique 2)关键字 - 数据类型为varchar(20),独特的

3) weight - int 3)重量 - 诠释

4) link - varchar(256). 4)链接 - 为varchar(256)。

代码如下:

<?php
/** 
 * this function will update the mysql database table to reflect the new count of the keyword
 * i.e. the sum of current count in the mysql database &amp;amp;amp;amp; current count in the input.
 */
function update_database_entry($connection, $table, $keyword, $weight) {
    $string = $_POST[&#39;tag_input&#39;];
    $connection = mysql_connect("localhost", "root", "");
    /** 
     * now comes the main part of generating the tag cloud
     * we would use a css styling for deciding the size of the tag according to its weight,
     * both of which would be fetched from mysql database.
     */
    $query = "select * from `tagcloud_db`.`tags` where keyword like &#39;%$keyword%&#39;";
    $resultset = mysql_query($query, $connection);
    if (!$resultset) {
        die(&#39;Invalid query: &#39; . mysql_error());
    } else {
        while ($row = mysql_fetch_array($resultset)) {
            $query = "UPDATE `tagcloud_db`.`tags` SET weight=" . ($row[2] + $weight) . " where tag_id=" . $row[0] . ";";
            mysql_query($query, $connection);
        }
    }
}
?>
<?php
/*
 * get the input string from the post and then tokenize it to get each word, save the words in an array
 * in case the word is repeated add &#39;1&#39; to the existing words counter
*/
$count = 0;
$tok = strtok($string, " t,;.&#39;\"!&-`nr"); //considering line-return,line-feed,white space,comma,ampersand,tab,etc... as word separator
if (strlen($tok) > 0) $tok = strtolower($tok);
$words = array();
$words[$tok] = 1;
while ($tok !== false) {
    echo "Word=$tok<br />";
    $tok = strtok(" t,;.&#39;\"!&-`nr");
    if (strlen($tok) > 0) {
        $tok = strtolower($tok);
        if ($words[$tok] >= 1) {
            $words[$tok] = $words[$tok] + 1;
        } else {
            $words[$tok] = 1;
        }
    }
}
print_r($words);
echo &#39;<br /><br />&#39;;
/** 
 * now enter the above array of word and corresponding count values into the database table
 * in case the keyword already exist in the table then update the database table using the function &#39;update_database_entry(...)&#39;
 */
$table = "tagcloud_db";
mysql_select_db($table, $connection);
foreach ($words as $keyword => $weight) {
    $query = "INSERT INTO `tagcloud_db`.`tags` (keyword,weight,link) values (&#39;" . $keyword . "&#39;," . $weight . ",&#39;NA&#39;)";
    if (!mysql_query($query, $connection)) {
        if (mysql_errno($connection) == 1062) {
            update_database_entry($connection, $table, $keyword, $weight);
        }
    }
}
mysql_close($connection);
?>
登录后复制

做出anether文件和将其命名为style.css文件,把下面的代码:

HTML, BODY 
	{ 
	padding: 0; 
	border: 0px none; 
	font-family: Verdana; 
	font-weight: none; 
	} 
	.tags_div 
	{ 
	padding: 3px; 
	border: 1px solid #A8A8C3; 
	background-color: white; 
	width: 500px; 
	-moz-border-radius: 5px; 
	} 
	H1 
	{ 
	font-size: 16px; 
	font-weight: none; 
	} 
	A:link 
	{ 
	color: #676F9D; 
	text-decoration: none; 
	} 
	A:hover 
	{ 
	text-decoration: none; 
	background-color: #4F5AA1; 
	color: white; 
	}
登录后复制

这将使我们的标签云外观漂亮,它保存为style.css的,再次,使一个新的PHP文件,并命名它show_tag_cloud.php。

在PHP代码中,如下我们连接到MySQL数据库,获取所有的标签,其重量和纽带,然后计算每个使用它的重量及最小的标签大小假定为标签的大小,它也是每一个标签从数据库中检索或与Google链接,如果没有链接存在,即"不适用"的链接,代码如下:

<?php
$connection = mysql_connect("localhost", "root", "");
$table = "tagcloud_db";
$words = array();
$words_link = array();
mysql_select_db($table, $connection);
$query = "SELECT keyword,weight,link FROM `tagcloud_db`.`tags`;";
if ($resultset = mysql_query($query, $connection)) {
    while ($row = mysql_fetch_row($resultset)) {
        $words[$row[0]] = $row[1];
        $words_link[$row[0]] = $row[2];
    }
}
// Incresing this number will make the words bigger; Decreasing will do reverse
$factor = 0.5;
// Smallest font size possible
$starting_font_size = 12;
// Tag Separator
$tag_separator = &#39;     &#39;;
$max_count = array_sum($words);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 
<HTML> 
 <HEAD> 
  <TITLE> Tag Cloud Generator </TITLE> 
  <META NAME="Keywords" CONTENT="tag, cloud, php, mysql"> 
  <META NAME="Description" CONTENT="A Tag Cloud using php and mysql"> 
  <LINK REL="stylesheet" HREF="style.css" TYPE="text/css"> 
 </HEAD> 
<BODY> 
<center><h1 id="Tag-nbsp-Cloud-nbsp-using-nbsp-php-nbsp-and-nbsp-mysql-nbsp">Tag Cloud using php and mysql </h1><div align=&#39;center&#39; class=&#39;tags_div&#39;> 
<?php
foreach ($words as $tag => $weight) {
    $x = round(($weight * 100) / $max_count) * $factor;
    $font_size = $starting_font_size + $x . &#39;px&#39;;
    if ($words_link[$tag] == &#39;NA&#39;) echo "<span style=&#39;font-size: " . $font_size . "; color: #676F9D;&#39;><a href=&#39;http://www.google.co.in/search?hl=en&q=" . $tag . "&meta=&#39;>" . $tag . "</a></span>" . $tag_separator;
    else echo "<span style=&#39;font-size: " . $font_size . "; color: #676F9D;&#39;><a href=&#39;http://" . $words_link[$tag] . "/&#39;>" . $tag . "</a></span>" . $tag_separator;
}
?>
</div></center> 
</BODY> 
</HTML>
登录后复制

现在把他们所有在您的Web服务器的根目录,并观看结果。 每个查询会给你新的结果,随着时间的推移,数据库的增长。

教程链接:

随意转载~但请保留教程地址★

本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌
两个点博物馆:所有展览以及在哪里可以找到它们
1 个月前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

PHP 的大数据结构处理技巧 PHP 的大数据结构处理技巧 May 08, 2024 am 10:24 AM

大数据结构处理技巧:分块:分解数据集并分块处理,减少内存消耗。生成器:逐个产生数据项,无需加载整个数据集,适用于无限数据集。流:逐行读取文件或查询结果,适用于大文件或远程数据。外部存储:对于超大数据集,将数据存储在数据库或NoSQL中。

如何在 PHP 中使用 MySQL 备份和还原? 如何在 PHP 中使用 MySQL 备份和还原? Jun 03, 2024 pm 12:19 PM

在PHP中备份和还原MySQL数据库可通过以下步骤实现:备份数据库:使用mysqldump命令转储数据库为SQL文件。还原数据库:使用mysql命令从SQL文件还原数据库。

如何优化 PHP 中的 MySQL 查询性能? 如何优化 PHP 中的 MySQL 查询性能? Jun 03, 2024 pm 08:11 PM

可以通过以下方式优化MySQL查询性能:建立索引,将查找时间从线性复杂度降至对数复杂度。使用PreparedStatements,防止SQL注入并提高查询性能。限制查询结果,减少服务器处理的数据量。优化连接查询,包括使用适当的连接类型、创建索引和考虑使用子查询。分析查询,识别瓶颈;使用缓存,减少数据库负载;优化PHP代码,尽量减少开销。

如何使用 PHP 插入数据到 MySQL 表中? 如何使用 PHP 插入数据到 MySQL 表中? Jun 02, 2024 pm 02:26 PM

如何将数据插入MySQL表中?连接到数据库:使用mysqli建立与数据库的连接。准备SQL查询:编写一个INSERT语句以指定要插入的列和值。执行查询:使用query()方法执行插入查询,如果成功,将输出一条确认消息。

如何使用 PHP 创建 MySQL 表? 如何使用 PHP 创建 MySQL 表? Jun 04, 2024 pm 01:57 PM

使用PHP创建MySQL表需要以下步骤:连接到数据库。创建数据库(如果不存在)。选择数据库。创建表。执行查询。关闭连接。

如何在 PHP 中使用 MySQL 存储过程? 如何在 PHP 中使用 MySQL 存储过程? Jun 02, 2024 pm 02:13 PM

要在PHP中使用MySQL存储过程:使用PDO或MySQLi扩展连接到MySQL数据库。准备调用存储过程的语句。执行存储过程。处理结果集(如果存储过程返回结果)。关闭数据库连接。

如何修复 MySQL 8.4 上的 mysql_native_password 未加载错误 如何修复 MySQL 8.4 上的 mysql_native_password 未加载错误 Dec 09, 2024 am 11:42 AM

MySQL 8.4(截至 2024 年的最新 LTS 版本)中引入的主要变化之一是默认情况下不再启用“MySQL 本机密码”插件。此外,MySQL 9.0完全删除了这个插件。 此更改会影响 PHP 和其他应用程序

oracle数据库和mysql的区别 oracle数据库和mysql的区别 May 10, 2024 am 01:54 AM

Oracle数据库和MySQL都是基于关系模型的数据库,但Oracle在兼容性、可扩展性、数据类型和安全性方面更胜一筹;而MySQL则侧重速度和灵活性,更适合小到中等规模的数据集。①Oracle提供广泛的数据类型,②提供高级安全功能,③适合企业级应用程序;①MySQL支持NoSQL数据类型,②安全性措施较少,③适合小型到中等规模应用程序。

See all articles