Este código es para que veamos como se hace la tabla de multiplicación del 12 en php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<?php
$count =1;
while ($count <=12)
{
echo "$count times 12 is " . $count* 12 ."<br>";
++$count;
}
?>
</body>
</html>
<?php