Changeset 39498 for trunk/ippMonitor/raw/czartool_exposures.php
- Timestamp:
- Mar 31, 2016, 6:26:07 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/ippMonitor/raw/czartool_exposures.php (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippMonitor/raw/czartool_exposures.php
r38258 r39498 74 74 75 75 $qry = $db->query($sql); 76 $qry->fetchInto($count);76 dbFetchInto($qry, $count); 77 77 78 78 if ($surveyStr == "") $surveyText = "all surveys"; … … 154 154 155 155 // loop through results in order to make html table 156 while ( $qry->fetchInto($row)) {156 while (dbFetchInto($qry, $row)) { 157 157 158 158 $exp_id = $row[0]; … … 257 257 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 258 258 259 while ( $qry->fetchInto($row)) {259 while (dbFetchInto($qry, $row)) { 260 260 261 261 if ($row[2] > 0) $hash[$row[0]] = "Y"; … … 287 287 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 288 288 289 while ( $qry->fetchInto($row)) {289 while (dbFetchInto($qry, $row)) { 290 290 291 291 if ($row[2] > 0) $hash[$row[0]] = "Y"; … … 318 318 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 319 319 320 while ( $qry->fetchInto($row)) {320 while (dbFetchInto($qry, $row)) { 321 321 322 322 if ($row[2] > 0) $hash[$row[0]] = "Y"; … … 350 350 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 351 351 352 while ( $qry->fetchInto($row)) {352 while (dbFetchInto($qry, $row)) { 353 353 354 354 if ($row[2] > 0) $hash[$row[0]] = $row[2]; … … 380 380 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 381 381 382 while ( $qry->fetchInto($row)) {382 while (dbFetchInto($qry, $row)) { 383 383 384 384 if ($row[2] > 0) $hash[$row[0]] = $row[2]; … … 408 408 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 409 409 410 while ( $qry->fetchInto($row)) {410 while (dbFetchInto($qry, $row)) { 411 411 412 412 if ($row[2] > 0) { … … 444 444 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 445 445 446 while ( $qry->fetchInto($row)) {446 while (dbFetchInto($qry, $row)) { 447 447 448 448 if ($row[2] > 0) $hash[$row[0]] = $row[2]; … … 475 475 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 476 476 477 while ( $qry->fetchInto($row)) {477 while (dbFetchInto($qry, $row)) { 478 478 479 479 if ($row[2] > 0) $hash[$row[0]] = $row[2]; … … 505 505 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 506 506 507 while ( $qry->fetchInto($row)) {507 while (dbFetchInto($qry, $row)) { 508 508 509 509 $hash[$row[0]] = $row[1]; … … 536 536 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 537 537 538 while ( $qry->fetchInto($row)) {538 while (dbFetchInto($qry, $row)) { 539 539 540 540 if ($row[2] > 0) $hash[$row[0]] = $row[2]; … … 566 566 if (dberror($qry)) {echo "<b>error with $sql </b><br>\n";} 567 567 $hash = array(); 568 while ( $qry->fetchInto($row)) {568 while (dbFetchInto($qry, $row)) { 569 569 570 570 if ($row[2] == 2) $hash1[$row[0]] = $row[1];
Note:
See TracChangeset
for help on using the changeset viewer.
