</script>
</head>
<body link="#000080" vlink="#800080" bgcolor="#ffffff">
<p align="center">
<a href="http://www.scielo.org">
<img alt="Scientific Electronic Library Online" border="0" src="/img/en/scielobre
.gif">
</a>
<br>
<img src="/img/assinat.gif" border="0">
</p>
      

<a name="visartlang"><h2>The number of visited Articles per Language (log scale)</a></h2>
<?php 
$log = new LogDatabaseQueryTitle(LOGDEF);
$flagAll = false;
if (!$issn or $issn[0] == "All") {
    echo "<p>All article's visits for all journals, grouped by language, since 1998.</p>\n";
    $flagAll = true;
} else {
    echo "<p>All article's visits, grouped by language, since 1998, for the following titles:<br>\n";
    echo "<ul>\n";
    $log->setPid($issn);
    $titles = $log->GetTitles(true);
    for ($i = 0; $i < count($titles); $i++) {
        echo "<li>" . $titles[$i]["title"] . "</li>\n";
    }
    echo "</ul>\n";
}
?>
Exemple #2
0
</td>
<td valign="top" width="30%">
<form method="POST" name="months" action="http:/graphics/index1.php">
<b>Choose a Journal</b><br/>
<select name="pid[]" multiple="1" size="20">

<?php 
$flagAll = false;
$todas = "<option value=\"All\"";
if (!$pid or $pid[0] == "All") {
    $todas .= " selected=\"true\"";
    $flagAll = true;
}
$todas .= ">Library Collection</option>";
echo $todas . "\n";
$log = new LogDatabaseQueryTitle(LOGDEF);
$titles = $log->GetTitles(false);
/* $log->destroy(); */
/* Intento marcar las revistas seleccionadas */
$seleccionados = "";
if ($pid and $pid[0] != "All") {
    $log->setPid($pid);
    $mititles = $log->GetTitles(true);
    $counttitles = count($mititles);
} else {
    $counttitles = 0;
}
for ($i = 0; $i < count($titles); $i++) {
    echo "<option value=\"" . $titles[$i]["issn"] . "\"";
    for ($j = 0; $j < $counttitles; $j++) {
        if ($mititles[$j]["title"] == $titles[$i]["title"]) {