Here are 2 examples. Create an HTML table in PHP: echo ' <table align="center" width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td>HTML table created in PHP</td> </tr> </table> '; PHP: Create a MySQL table in PHP: mysql_query(" CREATE TABLE IF NOT EXISTS `db_table` ( `optionid` bigint(20) unsigned NOT NULL, `option_name` varchar(20) NOT NULL default '' ); "); PHP: