Guest Posted April 29, 2008 Posted April 29, 2008 I need to have this code: <CENTER> <FORM action="mwhois.php" method=post> <TABLE border=0> <TBODY> <TR> <TD> <TABLE border=1> <TBODY> <TR> <TD> <TABLE border=0 cellPadding=3> <TBODY> <TR> <TD colSpan=3 vAlign=top><FONT face=ARIAL size=-1>DOMAIN NAME:</FONT></TD></TR> <TR> <TD vAlign=center><INPUT maxLength=57 name=domain></TD> <TD align=middle vAlign=center><FONT size=+3>.</FONT></TD> <TD align=left><FONT face=ARIAL> <select name="ext"> <option>com <option>net <option>org </select> </FONT></TD></TR> <TR> <TD align=middle colSpan=3><INPUT type=submit value="Check name"> <INPUT type=reset value=Clear> </TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></FORM> <P></CENTER> displayed in the center of this page. Here is the code for the page that I want to have it displayed on: <?php require('includes/application_top.php'); ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE; ?></title> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> <!-- header //--> <?php require(DIR_WS_INCLUDES . 'header.php'); ?> <!-- header_eof //--> <!-- body_text //--> <table align="center" border="0" width="780" cellspacing="3" cellpadding="3"> <tr> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- left_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> <!-- left_navigation_eof //--> </table></td> <!-- body_text_eof //--> <td width="100%" valign="top"> <table align="center" border="0" width="100%" cellspacing="0" cellpadding="2"> <tr><td> <div align="center"> <IFRAME name = "mainbody" src = "www.dcserver.net/mwhois/mwhois.php" width = "100%" height = "450" scrolling = "auto" frameborder = "0" align = "middle" marginwidth = "0" marginheight = "0"> </IFRAME> </div> </td></tr> </table></td> <!-- right_navigation //--> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table></td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?> Any help is greatly appreciated. I have tried playing with this and I can't it to display correctly. Thanks!! I would also like it to output to the same page, i am not sure how to do that.
Guest Posted April 30, 2008 Posted April 30, 2008 does anyone know of any scripts that i can use instead?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.