Primo commit: trasferimento del progetto PPEasy

This commit is contained in:
2024-09-18 10:30:50 +02:00
commit eb475f257e
4233 changed files with 1043848 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
$fieldsstdcheck = new WA_MySQLi_RS("fieldsstdcheck",$cmctrfdb,0);
$fieldsstdcheck->setQuery("SELECT * FROM trfstandards WHERE trfstandards.idtrfdetails='$idtrf'");
$fieldsstdcheck->execute();
?>
<?php
$wa_startindex = 0;
while(!$fieldsstdcheck->atEnd()) {
$wa_startindex = $fieldsstdcheck->Index;
?>
<?php if (($fieldsstdcheck->getColumnVal("idprotectioncategory")=='') || (($fieldsstdcheck->getColumnVal("iddpicategory")==''))) {
$alertyes="YES";
$_SESSION["alertstd"]=$alertyes;
header("location: standardstep.php?idtrf=$idtrf");
}
?>
<?php
$fieldsstdcheck->moveNext();
}
$fieldsstdcheck->moveFirst(); //return RS to first record
unset($wa_startindex);
unset($wa_repeatcount);
?>