Hi! If I try to include the index.php in another php page by the followind code:
<!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>Documento senza titolo</title> </head>
<body> <?php require_once('index.php'); ?>
</body> </html>
I have a Javascript error message (IE 6). You can see the page to this address
http://www.milestonesrl.com/intranet_analytical/FBrowser/list6.php
Any suggestions?
Have you tried to use iframe with index.php rather then including it within a different page?
I think the problem could be that user interface is based on AJAX.
Log in to post a comment.
Hi! If I try to include the index.php in another php page by the followind code:
<!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>Documento senza titolo</title>
</head>
<body>
<?php require_once('index.php'); ?>
</body>
</html>
I have a Javascript error message (IE 6).
You can see the page to this address
http://www.milestonesrl.com/intranet_analytical/FBrowser/list6.php
Any suggestions?
Have you tried to use iframe with index.php rather then including it within a different page?
I think the problem could be that user interface is based on AJAX.