最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

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

时间:2014-06-09 16:40来源: 作者: 点击:
用户输入文本和输入的文本在过去的一个标签云,标签云是一个用户生成的标签的可视化描述,或只是一个网站的文字内容,通常用来描述网站的内容。 为此,我们将创建一个HTML表格,将接受用户

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

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

  1. <?php 
  2.  echo '<form method="post" action="tag_cloud_gen.php" name="gen_tag_db">'
  3.  echo '<p>Input your text here:<br /><textarea name="tag_input" rows="20" cols="80"></textarea></p>'
  4.  echo '<input type="submit" name="submit">'
  5.  echo '</form>'
  6. ?> 
  7. <br /> 
  8. <h3>OR</h3> 
  9. <br /> 
  10. <p>see the current tag cloud here</p> 
  11. <?php 
  12.  echo '<form name="show_tag_cloud" method="post" action="show_tag_cloud.php">'
  13.  echo '<input type="submit" value="show current tag cloud" >'
  14.  echo '</form>'
  15. ?> 

其中每个计算其频率和对将进入一个数组,输入的文本将被表征为单个词。然后将这个数组存储到一个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)。

代码如下:

  1. <?php 
  2. /** 
  3. * this function will update the mysql database table to reflect the new count of the keyword 
  4. * i.e. the sum of current count in the mysql database &amp;amp;amp;amp;amp; current count in the input. 
  5. */ 
  6. function update_database_entry($connection,$table,$keyword,$weight){ 
  7.  $string=$_POST['tag_input']; 
  8.  $connection = mysql_connect("localhost""root"""); 
  9.  /** 
  10.  * now comes the main part of generating the tag cloud 
  11.  * we would use a css styling for deciding the size of the tag according to its weight, 
  12.  * both of which would be fetched from mysql database. 
  13.  */ 
  14.  $query="select * from `tagcloud_db`.`tags` where keyword like '%$keyword%'"
  15.  $resultset=mysql_query($query,$connection); 
  16.  if(!$resultset){ 
  17.   die('Invalid query: ' . mysql_error()); 
  18.  } else { 
  19.   while($row=mysql_fetch_array($resultset)){ 
  20.   $query="UPDATE `tagcloud_db`.`tags` SET weight=".($row[2]+$weight)." where tag_id=".$row[0].";"
  21.   mysql_query($query,$connection); 
  22.  } 
  23. ?> 
  24. <?php 
  25. /* 
  26. * get the input string from the post and then tokenize it to get each word, save the words in an array 
  27. * in case the word is repeated add '1' to the existing words counter 
  28. */ 
  29.  $count=0; 
  30.  $tok = strtok($string" t,;.'"!&-`nr");//considering line-return,line-feed,white space,comma,ampersand,tab,etc... as word separator 
  31.  if(strlen($tok)>0) $tok=strtolower($tok); 
  32.  $words=array(); 
  33.  $words[$tok]=1; 
  34.  while ($tok !== false) { 
  35.   echo "Word=$tok<br />"
  36.   $tok = strtok(" t,;.'"!&-`nr"); 
  37.   if(strlen($tok)>0) { 
  38.   $tok=strtolower($tok); 
  39.   if($words[$tok]>=1){ 
  40.    $words[$tok]=$words[$tok] + 1; 
  41.   } else { 
  42.    $words[$tok]=1; 
  43.   } 
  44.  } 
  45. print_r($words); 
  46. echo '<br /><br />'
  47. /** 
  48. * now enter the above array of word and corresponding count values into the database table 
  49. * in case the keyword already exist in the table then update the database table using the function 'update_database_entry(...)' 
  50. */ 
  51. $table="tagcloud_db"
  52. mysql_select_db($table,$connection); 
  53. foreach($words as $keyword=>$weight){ 
  54.  $query="INSERT INTO `tagcloud_db`.`tags` (keyword,weight,link) values ('".$keyword."',".$weight.",'NA')"
  55.  if(!mysql_query($query,$connection)){ 
  56.   if(mysql_errno($connection)==1062){ 
  57.    update_database_entry($connection,$table,$keyword,$weight); 
  58.   } 
  59.  } 
  60. mysql_close($connection); 
  61. ?> 

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

  1. HTML, BODY 
  2. padding0
  3. border0px none
  4. font-familyVerdana
  5. font-weightnone
  6. .tags_div 
  7. padding3px
  8. border1px solid #A8A8C3
  9. background-colorwhite
  10. width500px
  11. -moz-border-radius: 5px
  12. H1 
  13. font-size16px
  14. font-weightnone
  15. A:link 
  16. color#676F9D
  17. text-decorationnone
  18. A:hover 
  19. text-decorationnone
  20. background-color#4F5AA1
  21. colorwhite

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

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

  1. <?php 
  2.  $connection = mysql_connect("localhost""root"""); 
  3.  $table="tagcloud_db"
  4.  $words=array(); 
  5.  $words_link=array(); 
  6.  mysql_select_db($table,$connection); 
  7.  $query="SELECT keyword,weight,link FROM `tagcloud_db`.`tags`;"
  8.  if($resultset=mysql_query($query,$connection)){ 
  9.   while($row=mysql_fetch_row($resultset)){ 
  10.    $words[$row[0]]=$row[1]; 
  11.    $words_link[$row[0]]=$row[2]; 
  12.   } 
  13.  } 
  14. // Incresing this number will make the words bigger; Decreasing will do reverse 
  15. $factor = 0.5; 
  16. // Smallest font size possible 
  17. $starting_font_size = 12; 
  18. // Tag Separator 
  19. $tag_separator = '&nbsp; &nbsp; &nbsp;'
  20. $max_count = array_sum($words); 
  21. ?> 
  22. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
  23. <HTML> 
  24.  <HEAD> 
  25.   <TITLE> Tag Cloud Generator </TITLE> 
  26.   <META NAME="Keywords" CONTENT="tag, cloud, php, mysql"
  27.   <META NAME="Description" CONTENT="A Tag Cloud using php and mysql"
  28.   <LINK REL="stylesheet" HREF="style.css" TYPE="text/css"
  29.  </HEAD> 
  30. <BODY> 
  31. <center><h1>Tag Cloud using php and mysql </h1><div align='center' class='tags_div'
  32. <?php 
  33. foreach($words as $tag => $weight ) 
  34.  $x = round(($weight * 100) / $max_count) * $factor
  35.  $font_size = $starting_font_size + $x.'px'
  36.  if($words_link[$tag]=='NA'echo "<span style='font-size: ".$font_size."; color: #676F9D;'><a href='http://www.google.co.in/search?hl=en&q=".$tag."&meta='>".$tag."</a></span>".$tag_separator
  37.  else echo "<span style='font-size: ".$font_size."; color: #676F9D;'><a href='http://".$words_link[$tag]."/'>".$tag."</a></span>".$tag_separator
  38. ?> 
  39. </div></center> 
  40. </BODY> 
  41. </HTML> 

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

(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容