Example #1
0
<!DOCTYPE>
<html>
<head>
<meta charset="UTF-8" />
</head>
<body>
<?php 
require 'php/converter.class.php';
require 'tokens/tokens_array_type.php';
$prgm = new converter('ressources/sudoku_color.txt', 'FR');
// echo $prgm->get_type_of_programm();
foreach ($fr_only as $key => $value) {
    echo 'Token n°' . $key . '  = ' . $prgm->get_function_readable($value) . ' (ID: ' . $value . ') <br />';
}
?>
</body>
</html>
Example #2
0
	$cpt++;

  echo "<tr>";

  $j = $col2;

  for ($i = $col1; $i < $j; $i++) {



    echo "<td>N°$cpt -  $ligne[$i]</td>";


    }

  echo "</tr>";

  }

echo "</table>\n";*/
include '../php/converter.class.php';
include 'tokens_array_type.php';
$myprgm = new converter('ressources/sudoku_color.txt');
foreach ($color_only as $value) {
    $myprgm->get_function_readable($value) . '<br />';
}
?>

</body>
</html>