modified pdf1 and tabeldescription

This commit is contained in:
2026-03-17 14:38:43 +01:00
parent 5e5a7483ab
commit 70d39770f8
62 changed files with 1142 additions and 204 deletions
+10 -3
View File
@@ -251,7 +251,7 @@ $certname->execute(); ?>
<td id="cont_photoone">
<?php if (!empty($trfnumberfinal->getColumnVal("photoone"))) { ?>
<img src="uploaddocuments/<?php echo ($trfnumberfinal->getColumnVal("photoone")); ?>" height="200" alt="" />
<a href="deletephotoone.php?idtrf=<?php echo $idtrf; ?>"><i class="fas fa-trash-alt text-danger font-16"></i></a>
<?php } ?>
</td>
<td>
@@ -261,6 +261,7 @@ $certname->execute(); ?>
<?php if (!empty($trfnumberfinal->getColumnVal("phototwo"))) { ?>
<img src="uploaddocuments/<?php echo ($trfnumberfinal->getColumnVal("phototwo")); ?>" height="200" alt="" />
<a href="deletephototwo.php?idtrf=<?php echo $idtrf; ?>"><i class="fas fa-trash-alt text-danger font-16"></i></a>
<?php } ?>
</td>
@@ -751,7 +752,10 @@ $certname->execute(); ?>
// $("#photoaded").load(location.href + " #photoaded");
// SHOW PHOTO 1
$('#cont_photoone').html(data);
$('#cont_photoone').html(
data + ' <a href="deletephotoone.php?idtrf=<?php echo $idtrf; ?>"><i class="fas fa-trash-alt text-danger font-16"></i></a>'
);
}
});
});
@@ -798,7 +802,10 @@ $certname->execute(); ?>
// $('.gallery').html(data);
// $("#photoaded").load(location.href + " #photoaded");
// SHOW PHOTO 2
$('#cont_phototwo').html(data);
$('#cont_phototwo').html(
data + ' <a href="deletephototwo.php?idtrf=<?php echo $idtrf; ?>"><i class="fas fa-trash-alt text-danger font-16"></i></a>'
);
}
});
});