hello, i am using echo ' <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title></title> <link href="'.$path.'css.css" rel="stylesheet" type="text/css" /> </head> <body> <table width="720" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr> </table>'; PHP: I want to include top.php before the table. How can i do it? thanks
echo ' <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title></title> <link href="'.$path.'css.css" rel="stylesheet" type="text/css" /> </head> <body> '; include("top.php"); echo '<table width="720" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr> </table>'; PHP: