How to Create Table in PHP

Example of inserting Table in PHP.
This is my php script.
        
First NameLast Name
Junjun Segura

<html>
<body>
<?php

echo"<p> This is my php script!</p>";

echo"<table border=1 align=center>
    <tr>
    <td>First Name</td>
    <td>Last Name</td>
    </tr>   

    <tr>
    <td>Junjun</td>
    <td>Segura</td>
    </tr>
        </table>";

?>
</body>
</html>

Do you like this post?


Menu(Do not Edit here)