“PHP Crie código HTML” Respostas de código

PHP Crie 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 Crie código HTML

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

Respostas semelhantes a “PHP Crie código HTML”

Perguntas semelhantes a “PHP Crie código HTML”

Mais respostas relacionadas para “PHP Crie código HTML” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código