* All rights reserved. * * See COPYING file for license information. * * Download the latest version from * http://www.mysqlajaxtableeditor.com */ require_once('Common.php'); class HomePage extends Common { function displayHtml() { echo '
'; echo ''; } function HomePage() { $this->displayHeaderHtml(); $this->displayHtml(); $this->displayFooterHtml(); } } $lte = new HomePage(); ?>