This commit is contained in:
2024-05-17 14:40:45 +03:00
commit 0fe21e21b0
9 changed files with 194 additions and 0 deletions

16
functions.php Normal file
View File

@ -0,0 +1,16 @@
<?php
function PrintStringOfTable($file)
{
$buf = fgets($file, filesize("Information.txt")); ?>
<tr>
<td> <?php echo $tok = strtok($buf, ";"); ?> </td>
<td> <?php echo $tok = strtok(";"); ?> </td>
<td> <?php echo $tok = strtok(";"); ?> </td>
<td> <?php echo $tok = strtok(";"); ?> </td>
<td> <?php echo $tok = strtok(";"); ?> </td>
</tr>
<?php
}
?>