Ni idea. Porqué no te instalas apache y listo?
Por cierto, tienes mal cosas muy gordas:
Mal:
Bien:
Mal:
Bien:
Te faltaban corchetes, algunas líneas acababan por dos puntos (:) en lugar de punto y coma (;)..... mil etcéteras. Fíjate en el código bien.
Indenta el código correctamente (tabulando) y acostúmbrate a hacerle un HIGHLIGHT de PHP (en el editor de mensajes de este foro) para reconocer bien los códigos.
Código PHP:
Ver original<?php
echo "<table>";
echo "<tr>";
echo "<td>".$x."</td>";
for ($cabecera=1;$cabecera<=10;$cabecera++){
echo "<td>";
echo $cabecera;
echo "</td>";
}
echo "</tr>";
for ($x=1;$x<=10;$x++) {
echo "<tr>";
echo "<td>";
echo $x;
echo "</td>";
for ($y=1;$y<=10;$y++) {
$multiplicacion=$x*$y;
echo "<td>";
echo $multiplicacion;
echo "</td>";
}
echo "</tr>";
}
echo "</table>";
?>