Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>Create Table</title>
- </head>
- <body>
- <?php
- function CreateTable()
- {
- echo '<table width="100%" border="1" cellspacing="1" cellpadding="1"';
- echo "<tr>";
- echo '<th scope="col">ID</th>';
- echo '<th scope="col">Full Name</th>';
- echo "</tr>";
- echo "<tr>";
- echo "<td align=‘center’>001</td>";
- echo "<td align=‘center’>Jameson McFarlane</td>";
- echo "</tr>";
- echo "</table>";
- ?>
- CreateTable();
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment