Example of inserting Table in PHP.
This is my php script.First Name | Last 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?