Commit 8a2f12c9 authored by PkSM3's avatar PkSM3

full list ok

parent 8a387cbc
...@@ -32,7 +32,7 @@ echo ' ...@@ -32,7 +32,7 @@ echo '
<div id="tabs"> <div id="tabs">
<ul> <ul>
<li><a href="#tabs-1">Selected Document</a></li> <li><a href="#tabs-1">Selected Document</a></li>
<li><a href="full_doc_list.php?'.'gexf='.urlencode($gexf).'&query='.urlencode($_GET["query"]).'&type='.urlencode($_GET["type"]).'">Full list</a></li>'; <li><a href="full_doc_list.php?'.'gexf='.urlencode($gexf).'&query='.urlencode($_GET["query"]).'&index='.$_GET["index"].'&type='.urlencode($_GET["type"]).'">Full list</a></li>';
echo '</ul>'; echo '</ul>';
echo '<div id="tabs-1">'; echo '<div id="tabs-1">';
......
...@@ -23,7 +23,7 @@ foreach ($base->query($sql) as $row) { ...@@ -23,7 +23,7 @@ foreach ($base->query($sql) as $row) {
$table = ""; $table = "";
$column = ""; $column = "";
$id=""; $id="";
$twjs="API_CNRS/"; // submod path of TinaWebJS $twjs=end( explode("/",getcwd()) )."/"; // LOCALDB folder.
if($type=="social"){ if($type=="social"){
$table = "ISIAUTHOR"; $table = "ISIAUTHOR";
...@@ -34,7 +34,7 @@ if($type=="social"){ ...@@ -34,7 +34,7 @@ if($type=="social"){
} }
if($type=="semantic"){ if($type=="semantic"){
$table = "ISItermsListV1"; $table = $_GET["index"];
$column = "data"; $column = "data";
$id = "id"; $id = "id";
$restriction=''; $restriction='';
...@@ -55,7 +55,6 @@ FROM '.$table.' where ('; ...@@ -55,7 +55,6 @@ FROM '.$table.' where (';
GROUP BY '.$id.' GROUP BY '.$id.'
ORDER BY count('.$id.') DESC ORDER BY count('.$id.') DESC
LIMIT 1000'; LIMIT 1000';
#$queryparsed=$sql;##### #$queryparsed=$sql;#####
$wos_ids = array(); $wos_ids = array();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment