gpt4 book ai didi

php -
转载 作者:太空宇宙 更新时间:2023-11-04 15:19:33 28 4
gpt4 key购买 nike

我只需要放置一个 <? include_once ("SOMETHING.PHP"); ?>在一个分区内。每次我将 include_once 放入 div 时,SOMETHING.PHP 都不会显示在 div 中!!它最终会在 div 之外!

这是我的 div CSS 代码:

#bcg {
-moz-border-radius:10px; /* for Firefox */
-webkit-border-radius:10px; /* for Webkit-Browsers */
border-radius:10px; /* regular */
border-color:#000;
opacity:0.5; /* Transparent Background 50% */
background-image:url(imgs/gray_jean.png);
height:500px;
width:450px;
margin-left:20px;
margin-top:15px;
}

这就是我将 include_once 放入 div 的方式:

<div id="bcg"><?php include_once("something.php");?></div>

我不知道我做错了什么!!任何帮助将不胜感激。

这是 something.php

<?php

$username="";
$password="";
$database="";

mysql_connect('localhost',$username,$password);
@mysql_select_db($database) or die( "Unable to select database");

$query="SELECT * FROM pages";

$result=mysql_query($query);
$num=mysql_numrows($result);

mysql_close();

?>

<?php

$i=0;
while ($i < $num) {
$f1=mysql_result($result,$i,"pagebody");
?>
<table width="350" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="76">
<font face="Arial, Helvetica, sans-serif"><?php echo $f1; ?></font>
</td>
</tr>
</table>
<?php $i++; } ?>

最佳答案

尝试在输出缓冲区中捕获包含的脚本的输出,然后回显它。

<div id="bcg">
<?php
ob_start();

include_once("something.php");

echo ob_get_clean();
?>
</div>

关于php - <? include_once 在 div 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14740993/

28 4 0

Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com