Skip to content
Snippets Groups Projects
Select Git revision
  • eb453bde265c8fdaa470cb3e5a248937dcd58bd4
  • without_tipselection default
  • develop protected
  • fix/grafana-local-dashboard
  • wasp
  • fix/dashboard-explorer-freeze
  • master
  • feat/timerqueue
  • test/sync_debug_and_650
  • feat/sync_revamp_inv
  • wip/sync
  • tool/db-recovery
  • portcheck/fix
  • fix/synchronization
  • feat/new-dashboard-analysis
  • feat/refactored-analysis-dashboard
  • feat/new-analysis-dashboard
  • test/demo-prometheus-fpc
  • prometheus_metrics
  • wip/analysis-server
  • merge/fpc-test-value-transfer
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.3
  • v0.1.2
  • v0.1.1
  • v0.1.0
28 results

parameters.go

Blame
  • tablesMultiplication.php 1.08 KiB
    <?php
    require("utils/multi.php");
    ?>
    <?php require("./utils/inputs.php") ?>
    
    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
    
        <style type="text/css">
            .table-container {
                display: flex;
                flex-direction: column;
                border: solid 1px black;
                width: fit-content;
                padding: 0.5rem 1rem;
            }
    
            .tables {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 1rem;
            }
        </style>
    </head>
    
    <body>
        <h1>Tables Test: </h1>
        <div class="tables">
            <?php
    
            function generateTable(int $n)
            {
                return "<div class=\"table-container\">" . (string) multiplicationTable($n, 10) . "</div>\n";
            }
    
            for ($i = 1; $i < 10 + 1; $i++) {
                # code...
                $t = generateTable($i);
                echo $t;
            }
            ?>
        </div>
    
    
    </body>
    
    </html>