-1

我有一个可以自行正常工作的 PHP 文件,但我需要它在我的主页的某个名为 file.php 的部分上运行。

我希望 myfile.php 在 file.php 中运行,我正确地将容器划分到我需要它的位置并尝试了<?php include("myfile.php"); ?>它的工作原理,但我想要它的自动大小。

假设 myfile.php 的表格宽度大小为 900px,但是当我打开 file.php 时,myfile.php 中的表格大小变小了。尺寸变为低于 900 像素。如何在 myfile.php 中使用 div 容器在 file.php 中运行的那个表仍然是 900px?

4

4 回答 4

1

您可以使用 php “包含”

<div id="container">
<?php include("myfile.php"); ?>
</div>

顺便说一句,你想用大小做什么,我相信你需要 CSS 来做到这一点,而不是 php。

也许这样

我的文件.php

<table style="width:900px">
<tr><td></td></tr>
</table>
于 2013-04-16T11:13:41.840 回答
0

第一个:index3.php

<!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=UTF-8" />
<title>JS Change Class</title>
<script language="JavaScript" src="js/adspreview.js"type="text/javascript" xml:space="preserve"></script>
</head>
<body>
<div id="container">
        <?php include("test.php"); ?>
</div>
</body>
</html>

二:teste.php

<table border="1" width="100%">
    <tr>
    <td bgcolor="#0000FF" colspan="2">
        <p align="center"><font color="#FFFFFF" face="Arial"><b>Test</b></font>
    </td>
    </tr>
    <tr>
        <td>&nbsp;</td>
    </tr>
</table>

CTRL+C + CTRL+V ^^

于 2013-04-18T16:35:01.630 回答
0

此代码 index3.php 与 div

<!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=UTF-8" />
<title>JS Change Class</title>
<script language="JavaScript" src="js/adspreview.js"type="text/javascript" xml:space="preserve"></script>

<div id="container">
        <td><?php include("test.php"); ?>
</div>
</html>

这里是我想在 index3.php 中运行的代码

<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Test</title>
</head>

<body>

<table border="1" width="100%">
    <tr>
        <td bgcolor="#0000FF" colspan="2">
        <p align="center"><font color="#FFFFFF" face="Arial"><b>Test</b></font></td>
    </tr>
    <tr>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
    </tr>
</table>

</body>

</html>

请尝试一下,我对此感到困惑。谢谢您的帮助。

于 2013-04-17T06:48:29.263 回答
0

在文件.php

include "path/to/myfile.php";

于 2013-04-16T11:11:52.533 回答