Jump to content
Fórum Script Brasil
  • 0

Agrupar dados de uma array - para feras


mab

Question

Boa tarde a todos!

Estou desenvolvendo uma tag cloud e preciso agrupar o "Array" conforme as palavras sejam iguais e mostrar quantas são iguais.

Na base, o campo "tag_materia" é texto e as palavras chaves são separadas por traço (-).

Segue abaixo o código, faltado só agrupar as palavras chaves e mostar quantas cada uma são iguais.

<? 
  $i_tag_1 = 0;
  $link9 = mysql_query("SELECT tag_materia FROM tab_noticias WHERE publicado='1'",$conexao);
  while($linha9 = mysql_fetch_row($link9)){
      $variavel_completa = $linha9[0];
      $array_teste=explode("-",$variavel_completa);
      $n_palavras=count($array_teste);
      for($i=0; $i < $n_palavras; $i++ ){
         $Array[$i_tag_1] = $array_teste[$i];
         echo $Array[$i_tag_1] . " ";
         $i_tag_1 = $i_tag_1 + 1;
       }
  }
?>

Um forte abraço à todos.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...