“PHP Crear código HTML” Código de respuesta

PHP Crear código HTML

<?php /*Do some PHP calculation or something*/ ?>
     <table>
         <tr>
             <td>Name</td>
             <td><?php echo $name;?></td>
         </tr>
     </table>
Fine Finch

PHP Crear código HTML

<?php
     echo "<table>";
     echo "<tr>";
     echo "<td>Name</td>";
     echo "<td>".$name."</td>";
     echo "</tr>";
     echo "</table>";
?>
Fine Finch

Respuestas similares a “PHP Crear código HTML”

Preguntas similares a “PHP Crear código HTML”

Más respuestas relacionadas con “PHP Crear código HTML” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código