如何从另一个PHP文件运行PHP文件?

时间:2013-04-16 11:07:22

标签: php html containers

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

我希望myfile.php在file.php中运行,我正确地将容器放在我需要它的地方并尝试<?php include("myfile.php"); ?>它可以工作,但我想要它的自动尺寸。

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

4 个答案:

答案 0 :(得分:1)

你可以使用php“include”

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

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

也许这样

myfile.php

<table style="width:900px">
<tr><td></td></tr>
</table>

答案 1 :(得分:0)

file.php中的

include "path/to/myfile.php";

答案 2 :(得分: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>

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

答案 3 :(得分: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 ^^