日期:2014-05-17 浏览次数:20488 次
<div align="left">
<h1 align="center"> </h1>
<h1 align="center"><strong>这里放个变量$data</strong></h1>
<p align="center"> </p>
</div>
<?php
...这里连接数据库
$data=xxx
?>
<?php
...这里连接数据库
$data=xxx
?>
<div align="left">
<h1 align="center"> </h1>
<h1 align="center"><strong><?php var_dump($data)?></strong></h1>
<p align="center"> </p>
</div>
<?php
...这里连接数据库
$result = mysql_query($sql);
?>
<div align="left">
<h1 align="center"> </h1>
<?php
while($data = mysql_fetch_assoc($res)){
?>
<h1 align="center"><strong>这里放个变量<?php echo $data['xxx']?></strong></h1>
<?php
}
?>
<p align="center"> </p>
</div>