Changeset 19962
- Timestamp:
- 05/20/20 18:24:40 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/dch/memberlist.php
r19098 r19962 102 102 //members where not isnull(start) and not isnull(stop) group by username; 103 103 104 $selectcurrent="SELECT userid, firstname, middlename, lastname, inst.institutename, also.institutefullname, inst.institutefullname, inst.instituteadresse ";104 $selectcurrent="SELECT userid, firstname, middlename, lastname, inst.institutename, also.institutefullname, inst.institutefullname, inst.instituteadresse, alsomagic "; 105 105 $selectall="SELECT username, Date(start) AS 'from', if(stop='2020-12-31 23:59:59', 'unlimited', Date(stop)) AS 'until',"; 106 106 $selectall.=" DATE(ADDDATE(start, INTERVAL 6 MONTH)) AS 'author since', "; … … 123 123 break; 124 124 } 125 $selectlist.="inst.institutename, also.institutefullname, inst.institutefullname, inst.instituteadresse 125 $selectlist.="inst.institutename, also.institutefullname, inst.institutefullname, inst.instituteadresse, alsomagic "; 126 126 $from=" FROM memberlist.members "; 127 127 $join=" LEFT JOIN memberlist.institutes inst USING(instituteid) "; … … 162 162 // echo $querylist."<br>\n<br>\n"; 163 163 echo $_GET["corresponding"]; 164 echo "<h3>Current Author List:</h3>\n"; 164 $result = mysql_query($querycurrent); 165 $num_rows = mysql_num_rows($result); 166 echo "<h3>Current Author List: ".$num_rows." authors</h3>\n"; 165 167 echo "<table border='1'>\n"; 166 echo "<thead><tr><th>*</th><th>First Middle Lastname</th><th>Institute (#)</th><th>also at</th>< /tr></thead>\n";168 echo "<thead><tr><th>*</th><th>First Middle Lastname</th><th>Institute (#)</th><th>also at</th><th>also MAGIC</th></tr></thead>\n"; 167 169 echo "<tbody>\n"; 168 $result = mysql_query($querycurrent);169 170 $counter=0; 170 171 $letter=a; … … 196 197 $letter++; 197 198 } 198 echo "<td>".$row[5]." (".array_search($row[5], $alsos).") </td></tr>"; 199 } 199 echo "<td>".$row[5]." (".array_search($row[5], $alsos).") </td>"; 200 } 201 else 202 echo "<td></td>"; 203 if ($row[8]) 204 echo "<td>y</td></tr>"; 200 205 else 201 206 echo "<td></td></tr>"; … … 282 287 else 283 288 echo "<input type=radio name='textformat' value='text'> text <br>"; 289 if ($_GET["magic"]=="on") 290 echo "<input type=checkbox name='magic' checked> show magic <br>"; 291 else 292 echo "<input type=checkbox name='magic'> show magic <br>"; 284 293 echo "<br><input type='submit' value='Get List'>\n"; 285 294 echo "</form>\n"; … … 315 324 if ($row[2]) 316 325 echo GetSup($textformat, array_search($row[2], $alsos)); 326 if ($_GET["magic"]=="on" && $row[5]) 327 echo GetSup($textformat, "*"); 317 328 echo GetEndl($textformat, ","); 318 329 } … … 341 352 if ($row[2]) 342 353 echo GetSup($textformat, array_search($row[2], $alsos)); 354 if ($row[5]) 355 echo GetSup($textformat, "*"); 343 356 echo GetEndl($textformat, ","); 344 357 } … … 350 363 foreach ($alsos as $num => $name) 351 364 echo GetSup($textformat, $num)." also at ".GetBla($textformat, $name).GetEndl($textformat, ""); 365 if ($_GET["magic"]=="on") 366 echo GetSup($textformat, "*")." also in MAGIC "; 352 367 353 368
Note:
See TracChangeset
for help on using the changeset viewer.