Error

syntax error, unexpected '$tag' (T_VARIABLE), expecting ',' or ')' for /article/345
/ /

Error

syntax error, unexpected '$tag' (T_VARIABLE), expecting ',' or ')' for /article/346

Taxonomie

July. 26th, 2006 13:25 by Stéphane de LucaPermalink | TrackBack: https://stephanedeluca.com/trackback/346 — updated on Nov. 19th, 2018 23:40 exists for 17 years & 8 months ago  Content not available in English. - .

Ici l’on parle des sujets suivants, indexés à l’aide de mots-clé, les tags. Plus la taille d’un tag est grande, plus on parle du sujet afférant. Pour accéder aux articles relatifs à l'un des tags, il suffit de cliquer dessus.


$object = "

Here we discuss about the following topics, each indexed with a collection of tags. The bigger the tag size, the more popular. Just click on the appropriate tag to display all related articles.


"; /* ---- PARTIALS ------ */ $common = "
"; $query = " SELECT tag, count AS size FROM tags WHERE site_id='".Webengine::$site['ID']."' GROUP BY tag ORDER BY tag DESC "; $tags = $db->selectAllRows($query); $maxSize = 0; foreach ( $tags as $tag ) { if ($tag[size]>$maxSize) $maxSize = $tag[size]; //$total += $tag[size]; } reset($tags); foreach ( $tags as $tag ) { if ($tag[size] <= 0) continue; $r = tagWeight($tag[size], $maxSize); if (!$r) continue; $weight = $r[weight]; $size = $r[size]; $easeOut = $r[easeOut]; $percent = $r[percent]; $selected = (strtolower($selectedTag)==strtolower($tag[tag])) ? " is-danger":""; $common.= sprintf("$tag[tag] ",$percent); } $common .="
"; /* ------------*/ $object.= $common;


Error

syntax error, unexpected '$tag' (T_VARIABLE), expecting ',' or ')' for /article/345

Taxonomy

July. 26th, 2006 13:25 by Stéphane de LucaPermalink | TrackBack: https://stephanedeluca.com/trackback/345 — updated on Apr. 25th, 2019 16:03 exists for 17 years & 8 months ago - .

$object = "

Here we discuss about the following topics, each indexed with a collection of tags. The bigger the tag size, the more popular. Just click on the appropriate tag to display all related articles.


"; /* ---- PARTIALS ------ */ $common = "
"; $query = " SELECT tag, count AS size FROM tags WHERE site_id='".Webengine::$site['ID']."' GROUP BY tag ORDER BY tag DESC "; $tags = $db->selectAllRows($query); $maxSize = 0; foreach ( $tags as $tag ) { if ($tag[size]>$maxSize) $maxSize = $tag[size]; //$total += $tag[size]; } reset($tags); foreach ( $tags as $tag ) { if ($tag[size] <= 0) continue; $r = tagWeight($tag[size], $maxSize); if (!$r) continue; $weight = $r[weight]; $size = $r[size]; $easeOut = $r[easeOut]; $percent = $r[percent]; $selected = (strtolower($selectedTag)==strtolower($tag[tag])) ? " is-danger":""; $common.= sprintf("$tag[tag] ",$percent); /* if ($tag[size] == 0) continue; $norm = $tag[size]/$maxsize; $percent = 100*$norm; //$size = (int)(200+200.0*exp(20*$norm)); $size = max(200,(int)(900*$norm)); $title = $percent < 0.1 ? "<0.1%" : sprintf("%.001f %%", $percent); $common.= "$tag[tag] "; */ } $common .="
"; /* ------------*/ $object.= $common;


Back